I'm on bevy 0.10, and trying to animate my UI with bevy_tweening. Everything works fine while my mouse is moving, but as soon as I stop the FPS drops and the game completely freezes. Where should I look to resolve this? My game is not very intensive, and even when I disable the tweening the FPS still drops when I'm not moving my mouse.
#Low FPS/Freezing when I stop moving my mouse
1 messages · Page 1 of 1 (latest)
Do you have this setting enabled?
.insert_resource(WinitSettings::desktop_app())
You should remove it
This disables rendering when no input is detected. It sounds a lot like what you are experiencing
Thank you!!
that was the issue
awesome! Glad I could help