added main loop + render loop + animFrame

This commit is contained in:
lengstrom 2014-05-17 10:22:40 -04:00
parent f89a28c699
commit e632275bb2

22
main.js
View file

@ -1 +1,21 @@
// main thing here
// 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);
}