求下移变上浮,已调试多次

来源:2-5 果实绘制(果实上浮)

阿里0111

2021-01-15 10:09

好家伙 我这个上浮就跟放风筝一样,只能下移埋地雷

fruitObj.prototype.draw = function(){


    for(var i = 0; i < this.num; i++){


        if (this.alive[i] == true){


            if (this.l[i] < 20){


                this.l[i]+=this.speed[i]*0.3*dateTime;


            }else{

                this.y[i]+=(this.speed[i]*0.4*dateTime);

                

            }

    

            ctx2.drawImage(this.orange, this.x[i] - this.l[i]*0.5, this.y[i] - this.l[i]*0.5, this.l[i], this.l[i] )

    

            // 检测,y坐标改变alive状态

            if (this.y[i] < 20){

                this.alive = false;

            }


        }

   

    }

}


写回答 关注

0回答

还没有人回答问题,可以看看其他问题

HTML5小游戏---爱心鱼(上)

学做HTML5游戏,轻轻松松带你上手,适合刚入手游戏开发的同学

92348 学习 · 551 问题

查看课程

相似问题