kittywei
2015-04-17 16:31
这部分什么意思啊啊,求解释>.<
this.timer += deltaTime;
if( this.timer > 50 ){
this.picNo += 1;
this.picNo %= 7;
this.timer = 0;
}
deltaTime是时间差,this.timer是时间差的累加,就是时间过了50以后,this.picNo才加1,这样速度就慢下来了。
canvas实现星星闪烁特效
54188 学习 · 121 问题
相似问题