aevyrie / bevy_mod_picking

Picking and pointer events for Bevy.
https://crates.io/crates/bevy_mod_picking
Apache License 2.0
784 stars 172 forks source link

Bumped bevy_egui to 0.26 in egui backend #326

Closed Mat-Stevenson-Simworx closed 4 months ago

Mat-Stevenson-Simworx commented 6 months ago

Bumped bevy_egui to 0.26. Fixes dependency issue when using bevy_egui 0.26 in project.

Zoomulator commented 5 months ago

bevy_egui just released 0.27 I noticed picking stopped working for bevy-inspector-egui latest release which uses bevy_egui 0.27

aevyrie commented 4 months ago

At this point we might need to add explicit version features, like bevy_egui_0_25, bevy_egui_0_26, and bevy_egui_0_27, so we don't force users to update egui to get the latest mod_picking bugfixes.

We can change the default version to be the latest when using the bevy_egui feature (with no version on the end), but give users the ability to pick and choose which compatible version of bevy_egui they want to use for any version of mod_picking.

aevyrie commented 4 months ago

TIL you can specify a dep as a range of versions. Opening a PR.

aevyrie commented 4 months ago

Closing in favor of #334