-
How do I disable v-sync for my bevy app? |
Beta Was this translation helpful? Give feedback.
Answered by
IceSentry
Jun 8, 2022
Replies: 1 comment
-
Since at least bevy 0.7, you need to set the See https://github.com/bevyengine/bevy/blob/main/examples/window/window_settings.rs for a more complete example. If you have a g-sync or freesync display it's possible that the display will ignore this setting. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
IceSentry
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since at least bevy 0.7, you need to set the
present_mode
property toPresentMode::Immediate
on theWindowDescriptor
See https://github.com/bevyengine/bevy/blob/main/examples/window/window_settings.rs for a more complete example.
If you have a g-sync or freesync display it's possible that the display will ignore this setting.