Difference between revisions of "Application:setFps"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
Line 7: Line 7:
 
<source lang="lua">
 
<source lang="lua">
 
application:setFps(fps)
 
application:setFps(fps)
</source>
+
</syntaxhighlight>
  
  

Revision as of 17:57, 12 July 2023

Available since: Gideros 2012.2.2
Class: Application

Description

Sets the frame rate of the application. Accepted values are 30 and 60.

<source lang="lua"> application:setFps(fps) </syntaxhighlight>


You can also use setFps(-60) or setFps(-30) to maintain an apparent frame rate of 60 or 30 fps by skipping frames if the system notices it is running slow.

So for example, it updates the game logic 60 times per second but redraws the screen only 30 times per second.

The game is playable but will not be smooth on slow devices (currently available on WinRT).

Parameters

fps: (number) the new frame rate of the application