[]在线急等,发现你们这个编译器一个bug,不能实现负负得正,昨天明明解决了,过了一会又不行了,怎么回事

已邀请:

ymsdandan

赞同来自:

看看是不是你代码的问题,如果可以的话,建议你发个demo

l13273866189

赞同来自:

// 下落
_proto_.moveDownBall = function(){
this.ball.x -= this.vx;
this.ball.y += this.vy;
console.log("111111");
this.vy *= 0.99;
this.vy += 0.25;
console.log("222222");
if (this.ball.y + this.vy >= this.img1 ||this.ball.y + this.vy <= 0) {
this.vy = -this.vy;
console.log("33333");
}
if (this.ball.x + this.vx > this.stageWidth ||this.ball.x + this.vx < 0) {
this.vx = -this.vx;
console.log("444444");
}
if (this.ball.y > 1200) {
this.ball.x = 286;
this.ball.y = 1140;
// 清楚定时器
Laya.timer.clear(this, this.moveDownBall);
}
};
 

ymsdandan

赞同来自:

代码的问题,你得自己调试才行,也可以发个demo过来

l13273866189

赞同来自:

唉!引擎有问题

要回复问题请先

商务合作
商务合作