bevy_fly_camera
bevy_fly_camera copied to clipboard
Update Bevy to 0.11.0
Primary changes are switching to using .add_systems(..., ...)
and .add_plugins(...)
. Also corrected KeyCode::ShiftLeft
and removed unused materials
arg in the 2d example.
You'll also need to update the 3D example in the Readme. It has .with(FlyCamera::default())
which doesn't work anymore. I had to change it to .insert(FlyCamera::default())
.
Thanks for pointing out the Readme changes! The second commit should take care of that.
I changed my local copy of these changes to bevy 12.0 and it seems to work with that too 👍