- This wiki is out of date, use the continuation of this wiki instead
Set fps
From FenixWiki
(Difference between revisions)
Revision as of 02:13, 24 July 2007 (edit) Rincewind (Talk | contribs) (Error category removed.) ← Previous diff |
Revision as of 02:16, 24 July 2007 (edit) (undo) Rincewind (Talk | contribs) (Errors header added again, with "none".) Next diff → |
||
Line 23: | Line 23: | ||
The current FPS is in the [[global variable]] [[fps]]. | The current FPS is in the [[global variable]] [[fps]]. | ||
+ | |||
+ | == Errors == | ||
+ | None. | ||
== Example == | == Example == |
Revision as of 02:16, 24 July 2007
Contents |
Definition
INT set_fps ( <INT fps> , <INT skip> )
Sets the frames per second (framerate) your program aims to display. The more frames per second, the faster your program runs. Some computers might not be able to display the amount of frames you specified, and will show a lower fps. Therefore, it is important you choose a fps that is reasonable and can also be displayed by the somewhat slower computers. If you don't use this function then the default fps will be used (25 fps).
Parameters
INT fps | - Frames per second to use. The default is 25. |
INT skip | - Frames the program is allowed to skip to keep up with the specified framerate if it's running low on processor time. The default is 0. |
Returns
INT : The FPS entered.
Notes
If you use Set_fps(0,0), then your program will run at the maximum speed your computer can possibly handle.
It is said, the frame skipping does not work satisfactory in Fenix 0.83b.
The current FPS is in the global variable fps.
Errors
None.
Example
Program test; Begin Set_fps(60,0); Loop Frame; End End