qq_什么都不懂就好_0
2016-03-03 11:32
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];
}
在mian.js初始化了吗?
求问如何解决
后来好像是输错一个函数
都已经用啦
index.html中有没有加入 script标签
main.js init中有没有初始化
main.js gameloop中有没有调用fruits.draw
HTML5小游戏---爱心鱼(上)
92348 学习 · 551 问题
相似问题