这部分什么意思啊啊,求解释>.<
this.timer += deltaTime;
if( this.timer > 50 ){
this.picNo += 1;
this.picNo %= 7;
this.timer = 0;
}
deltaTime是时间差,this.timer是时间差的累加,就是时间过了50以后,this.picNo才加1,这样速度就慢下来了。