- This wiki is out of date, use the continuation of this wiki instead
Set fps
From FenixWiki
Revision as of 19:57, 26 June 2007 (edit) Sandman (Talk | contribs) m ← Previous diff |
Revision as of 01:05, 24 July 2007 (edit) (undo) Rincewind (Talk | contribs) (Little overhaul) Next diff → |
||
Line 5: | Line 5: | ||
'''INT''' set_fps ( <'''INT''' fps> , <'''INT''' skip> ) | '''INT''' set_fps ( <'''INT''' fps> , <'''INT''' skip> ) | ||
- | Sets the [[framerate]] | + | 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 == | == Parameters == | ||
{| | {| | ||
- | | '''INT''' fps || - Frames per second to use. | + | | '''INT''' fps || - Frames per second to use. The default is 25. |
|- | |- | ||
- | | '''INT''' skip || - Frames the program is allowed to skip if it's running low on processor time. | + | | '''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. |
|} | |} | ||
Line 18: | Line 18: | ||
== Notes == | == 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. | It is said, the frame skipping does not work satisfactory in Fenix 0.83b. | ||
The current FPS is in the [[global variable]] [[fps]]. | The current FPS is in the [[global variable]] [[fps]]. | ||
+ | |||
+ | == Errors == | ||
+ | ''<If someone knows, please edit!> '' | ||
+ | |||
+ | == Example == | ||
+ | <pre> | ||
+ | Program test; | ||
+ | Begin | ||
+ | Set_fps(60,0); | ||
+ | Loop | ||
+ | Frame; | ||
+ | End | ||
+ | End | ||
+ | </pre> |
Revision as of 01:05, 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
<If someone knows, please edit!>
Example
Program test; Begin Set_fps(60,0); Loop Frame; End End