永暗的世界
2017-02-27 11:55
var fruitObj=function(){
this.alive=[];//bool
this.x=[];
this.y=[];
this.l=[];
this.orange=new Image();
this.blue=new Image();
}
fruitObj.prototype.num=30;//fruit num
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++){
//draw
//find an ang ,graw,fly up
if(this.l[i]<=14){
this.l[i]+=0.01*deltaTime;
}
else{
this.y[i]-=0.07*deltaTime;
}
ctx2.drawImage(this.orange,this.x[i]-this.l[i]*0.5,this.y[i]-this.l[i]*0.5),this.l[i],this.l[i];
}
}
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];
this.l[i]= 0 ;
}
第一,你这个写的是果实的部分。
第二,你看看你的drawImage函数部分是不是写错了,该写在括号里面的东西你写在外面。
下面的是我的你可以找js里的fruit参考一下。
https://github.com/dirstart/h5_tiny
HTML5小游戏---爱心鱼(上)
92348 学习 · 551 问题
相似问题