-
Hi, I am working on a main menu and there is vsync and fullscreen toggle options on it. There are 2 problems that currently ends the game session:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Could you try changing the fullscreen with |
Beta Was this translation helpful? Give feedback.
Thank you, using
Game.Window.Fullscreensolved the issue.Fullscreen:
Game.Window.Fullscreen = true/falseVSync (enabled):
GraphicsDevice.Presenter.PresentInterval = Stride.Graphics.PresentInterval.One;VSync (disabled):
GraphicsDevice.Presenter.PresentInterval = Stride.Graphics.PresentInterval.Immediate;