不能顯示,求助,沒報錯
var fruitObj=function()
{
this.alive=[];
this.x=[];
this.y=[];
this.blue=new Image();
this.orange=new Image();
}
fruitObj.prototype.num=30;
fruitObj.prototype.init=function()
{
for(var i=0;i<this.num;i++)
{
this.alive[i]=true;
this.x[i]=0;
this.y[i]=0;
this.born(i);
}
this.orange.src="./src/fruit.png";
this.blue.src="./src/blue.png";
}
fruitObj.prototype.draw=function()
{
? ?for(var i=0;i<this.num;i++)
? ?{
? ?ctx2.drawImage(this.orange,this.x[i],this.y[i]);
? ?console.log('1');
? ?}
}
fruitObj.prototype.born=function(i)
{
var aneID=Math.floor(Math.random*ane.num);
? ? ?this.x[i]=ane.x[aneID];
? ? ?this.y[i]=canHeight - ane.len[aneID];
}
2016-03-04
在mian.js初始化了嗎?
2018-03-18
求問如何解決
2016-03-09
后來好像是輸錯一個函數(shù)
2016-03-09
都已經(jīng)用啦
2016-03-07
index.html中有沒有加入 script標(biāo)簽
main.js init中有沒有初始化
main.js gameloop中有沒有調(diào)用fruits.draw?