Enum FramerateLimit.LimitType
The different methods of limiting framerate.
Assembly: ImGuiScene.dll
View Source
Declaration
public enum FramerateLimit.LimitType
Fields
Unbounded
No limiting at all.
View Source
Declaration
Unbounded = 0
Vsync
Vsync enabled. Render presentation will be synced to display refresh rate.
View Source
Declaration
Vsync = 1
FixedFPS
Restrict rendering to a fixed (maximum) number of frames per second. This will disable vsync regardless of the fps value.
View Source
Declaration
FixedFPS = 2