为了账号安全,请及时绑定邮箱和手机立即绑定

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

}


正在回答

1 回答

window.requestAnimFrame(gameloop)

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信