1. 程式人生 > >鳥速度不勻速的方法Math.sqrt(this.i++); 開根號

鳥速度不勻速的方法Math.sqrt(this.i++); 開根號

random log cti osi 位置 速度 () pro 一個

function Bird(imgArr, x, y){
this.imgArr = imgArr;
this.x = x;
this.y = y;
this.idx = parseInt(Math.random() * this.imgArr.length);
this.img = this.imgArr[this.idx];
// 定義一個變量用於記錄鳥的位置
this.positionY = 0;
// 定義一個變量用於改變鳥的位置
this.i = 0;
}

Bird.prototype.fall = function(){
  this.positionY += Math.sqrt(this.i++);
};

鳥速度不勻速的方法Math.sqrt(this.i++); 開根號