We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c19418 commit 4d892b8Copy full SHA for 4d892b8
README.md
@@ -0,0 +1,24 @@
1
+
2
+
3
+This class provides a simple info box that will help you monitor your code performance.
4
5
+* FPS Frames per second, how many frames were rendered in 1 second. The higher the number, the better.
6
7
+# How to use
8
9
+ var stats = new Stats();
10
+ container.appendChild( stats.getDisplayElement() ); // container is a DOM Element
11
12
+ setInterval(loop, 1000/60);
13
14
+ function loop()
15
+ {
16
+ stats.tick();
17
+ }
18
19
+# Change Log
20
21
+* 2010 02 21 - v1.1
22
+ * Accurate FPS calculation (thx Spite!)
23
+* 2009 08 09 - v1.0
24
+ * Base code
README.textile
0 commit comments