为了账号安全,请及时绑定邮箱和手机立即绑定

我的漂浮物出不来 不知道哪里有问题

var dustObj =function ()

{


this.x = [];

this.y = [];

this.amp = [];

this.dustNo = [];

this.alpha;

}

dustObj.prototype.num = 30;

dustObj.prototype.init =function ()

{

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

{

this.x[i] = Math.random() * canWidth;

this.x[i] = Math.random() * canHeight;

this.amp[i] = 20 + Math.random() * 30;

this.dustNo[i] = Math.floor(Math.random() * 7 );

}

this.alpha = 0;

}


dustObj.prototype.draw = function()

{

this.alpha += deltaTime * 0.0007;

var len = Math.sin(this.alpha);

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

{

var no = this.dustNo[i];

cxt1.drawImage(dustPic[no], this.x[i] + this.amp[i] * len, this.y[i]);

}

}


正在回答

1 回答

找到了 有个地方this,y写成了this.x

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我的漂浮物出不来 不知道哪里有问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信