momoyy123
2016-01-31 21:52
function gameloop(){
window.requestAnimFrame(gameloop); //setInterval,setTimeout,frame per second
//console.log("gameloop");
var now = Date.now();
deltaTime = now - lastTime;
lastTime = now;
//console.log(deltaTime);
drawBackground();
}
window.requestAnimFrame(gameloop)
这个方法使gameloop循环,具体看插件
HTML5小游戏---爱心鱼(上)
92348 学习 · 551 问题
相似问题