DefinitelyTyped/stats.js/stats.js-tests.ts
2016-11-23 15:05:54 -08:00

20 lines
295 B
TypeScript

var stats = new Stats();
stats.showPanel( 1 ); // 0: fps, 1: ms, 2: mb, 3+: custom
document.body.appendChild( stats.dom );
function animate() {
stats.begin();
// monitored code goes here
stats.end();
requestAnimationFrame( animate );
}
requestAnimationFrame( animate );