我的漂浮物出不来 不知道哪里有问题
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]);
}
}