大魚眼睛一直閉著是怎么回事?
?this.momEyeTimer += deltaTime;
??? if(this.momEyeTimer>this.momEyeInterval)
??? {
?? ??? ?this.momEyeCount=(this.momEyeCount+1) % 2;
?? ??? ?this.momEyeTimer %=this.momEyeInterval;??? //回歸到初始狀態(tài)
?? ??? ?if(this.momEyeCount==0)
?? ??? ?{
?? ??? ??? ?this.momEyeInterval=Math.random() * 1500 + 2000;
?? ??? ?}else
?? ??? ?{
?? ??? ??? ?this.momEyeInterval=200;
?? ??? ?}
??? }
2019-08-28
最開始?momObj?的時候?初始化的值是1000?不是0? : momEyeInterval = 1000;
2018-09-26
我也是同樣的問題
2018-03-29
我也是同樣問題請問解決了么
2016-07-27
this.momEyeInterval初始值是1000,不是0
2016-04-29
var momEyeCount = this.momEyeCount;
ctx1.drawImage(momEye[momEyeCount],-momEye[momEyeCount].width * 0.5,-momEye[momEyeCount].height * 0.5);
2016-04-17
?var momEyeCount = this.momEyeCount;
ctx1.drawImage(momEye[momEyeCount],-momEye[momEyeCount].width * 0.5,-momEye[momEyeCount].height * 0.5);
2016-04-17
這段代碼沒錯 ?你去看看是不是畫眼睛的部分 ?代碼有無問題