DefinitelyTyped/stats/stats-tests.ts
2016-05-06 01:07:52 +09:00

20 lines
330 B
TypeScript

/// <reference path="stats.d.ts" />
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 );