This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var Stats = function() { | |
| var d = document.createElement("div"); | |
| d.setAttribute("style","color:#fff;font-size:10px;position:absolute;top:2px;left:2px;width:80;height:30px;padding:5px;z-index:1000;background:rgba(0,0,0,0.85);"); | |
| document.getElementsByTagName("body")[0].appendChild(d); | |
| this.d = d; | |
| this.stats = {}; | |
| this.measurements = {}; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var hud = function(msg, length) { | |
| var length = length || 2; | |
| window.hudBuffer = window.hudBuffer || []; | |
| window.hudBuffer.push(msg); | |
| if(window.hudBuffer.length > length) { | |
| window.hudBuffer.shift(); | |
| } | |
| hudString = ""; |
NewerOlder