问答详情
源自:2-1 绘制背景

drawBackground();这个函数为什么是在gameloop里调用,gameloop()具体是怎么循环的

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();

}


提问者:momoyy123 2016-01-31 21:52

个回答

  • 落霞与孤鹜齐飞
    2016-02-16 18:15:35
    已采纳

    window.requestAnimFrame(gameloop)

    这个方法使gameloop循环,具体看插件