2014-05-17 14:22:40 +00:00
|
|
|
// main thing here
|
|
|
|
|
|
|
|
window.requestAnimFrame = (function(){
|
|
|
|
return window.requestAnimationFrame ||
|
|
|
|
window.webkitRequestAnimationFrame ||
|
|
|
|
window.mozRequestAnimationFrame ||
|
|
|
|
function( callback ){
|
|
|
|
window.setTimeout(callback, 1000 / 60);
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
(function animloop(){
|
|
|
|
requestAnimFrame(animloop);
|
|
|
|
render();
|
|
|
|
})();
|
|
|
|
|
|
|
|
function render() {
|
|
|
|
// game code
|
|
|
|
|
|
|
|
requestAnimFrame(animloop);
|
|
|
|
}
|