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

来源:3-8 浮漂物制作

差太多

2016-10-18 12:02

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回答

  • 差太多
    2016-10-18 12:56:03

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

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

通过一个清新美好的小游戏教程,熟悉游戏开发流程

46272 学习 · 189 问题

查看课程

相似问题