Thebarricade/Sandbox – User

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
Thebarricade's Sandbox
Useful code


 
== FPS Counter (A2) ==
== FPS Counter ==
<pre>
<pre>
[] spawn
[] spawn

Revision as of 11:29, 25 October 2009

Useful code

FPS Counter (A2)

[] spawn
{
    while {true} do
    {
    	hintSilent str (round diag_fps);
    	sleep .5;
    };
};

(stolen from Rok)