第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

為什么果實(shí)不能循環(huán)?。?/h1>

求大神幫忙看一下,sendFruit()中的i總是為0,這是為什么呀?



var fruitObj = function(){

this.alive = []; ?//bool

this.x=[]; ?//圖片的x坐標(biāo)

this.y=[]; ?//圖片的y坐標(biāo)

this.l=[]; ? //圖片的長度

this.spd=[];

this.orange = new Image(); ?//創(chuàng)建一個(gè)image對(duì)象,給瀏覽器緩存一張圖片

this.blue = new Image();

}

fruitObj.prototype.num=30;

fruitObj.prototype.init=function(){

for(var i =0;i<this.num;i++){

? ? ? ? this.alive[i]=false;

? ? ? ? this.x[i]=0;

? ? ? ? this.y[i]=0;

? ? ? ? this.l[i]=0;

? ? ? ? this.spd[i]=Math.random()*0.017+0.003; //[0.003-0.02)


}

this.orange.src="./src/fruit.png";

this.blue.src="./src/blue.png";

}

fruitObj.prototype.draw = function(){


? ? for(var i =0;i<this.num;i++){

? ? ? if(this.alive=true){

? ? if(this.l[i]<14){

? ? this.l[i] +=this.spd[i]*deltaTime;//隨著時(shí)間變大

? ? }else{

? ? this.y[i] -=7*deltaTime*this.spd[i];//y坐標(biāo)隨著時(shí)間減小

? ? }

? ? 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]);

? ? }

? ? //draw

? ? //find an ane,grow,fly up

? ? if (this.y[i]<-10000) {

? ? this.alive[i] = false;

? ? }

? ? }

}

fruitObj.prototype.update=function(){

var num = 0;

for(var i=0;this.num;i++){

if(this.alive[i])

num++;

}

}

// 水果找到一個(gè)海葵出生

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;

? ? this.alive[i]=true;

? ??


? ? // console.log(fruit.alive[i]);

}

function fruitMonitor(){

? ? var num = 0;

? ? console.log(fruit.alive[i]);

? ? for(var i = 0; i< fruit.num;i++){

? ? if(fruit.alive[i])

? ? num++;

? ? ? ?

? ? }

? ? if(num<15){

? ? sendFruit();

? ? return;

? ? }

}

function sendFruit(){

? ? for(var i = 0; i<fruit.num;i++){

? ? if(!fruit.alive[i])

? ? {

? ? fruit.born(i);

? ? ? ? ? ? // console.log(i);

? ? return;

? ? }

? ? }

}


正在回答

2 回答

正確的是什么

0 回復(fù) 有任何疑惑可以回復(fù)我~

自己找到了,this.alive=true這里不對(duì)。。。

0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

為什么果實(shí)不能循環(huán)???

我要回答 關(guān)注問題
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)