大鱼眼睛一直闭着是怎么回事?
this.momEyeTimer += deltaTime;
if(this.momEyeTimer>this.momEyeInterval)
{
this.momEyeCount=(this.momEyeCount+1) % 2;
this.momEyeTimer %=this.momEyeInterval; //回归到初始状态
if(this.momEyeCount==0)
{
this.momEyeInterval=Math.random() * 1500 + 2000;
}else
{
this.momEyeInterval=200;
}
}