#Low FPS/Freezing when I stop moving my mouse

1 messages · Page 1 of 1 (latest)

stark saddle
#

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.

#

I've tried higher optimization settings with no luck either

urban laurel
#

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

stark saddle
#

that was the issue

urban laurel
#

awesome! Glad I could help