Skip to content

Commit

Permalink
Merge pull request #463 from defold/headless-update-frequency
Browse files Browse the repository at this point in the history
Added note about display.update_frequency for headles builds
  • Loading branch information
JCash authored Aug 15, 2024
2 parents 97313f6 + d4406a6 commit c8f3bae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/en/manuals/project-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ Check if the application should start full screen. If unchecked, the application

#### Update Frequency
The desired frame rate in Hertz. Set to 0 for variable frame rate. A value larger than 0 will result in a fixed frame rate capped at runtime towards the actual frame rate (which means that you cannot update the game loop twice in an engine frame). Use [`sys.set_update_frequency(hz)`](https://defold.com/ref/stable/sys/?q=set_update_frequency#sys.set_update_frequency:frequency) to change this value at runtime.
This setting also works in headless builds.

#### Swap interval
This integer value controls how the application deals with vsync. 0 disables vsync, and the default value is 1. When using an OpenGL adapter, this value sets the number of frames the window should [update between buffer swaps](https://www.khronos.org/opengl/wiki/Swap_Interval). For Vulkan, there is no built-in concept of swap interval, the value instead controls if vsync should be enabled or not.
Expand Down

0 comments on commit c8f3bae

Please sign in to comment.