你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
发现
话题
全文搜索
登录
[]在线急等,发现你们这个编译器一个bug,不能实现负负得正,昨天明明解决了,过了一会又不行了,怎么回事
没有找到相关结果
已邀请:
与内容相关的链接
提交
4 个回复
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
赞同来自:
唉!引擎有问题
要回复问题请先
登录
发起人
l13273866189
相关问题
看了其他引擎才发现 LAYA 真的太太太太好用了!!!!
解决跨域相关!
laya针对页游耗用内存大的问题是如何解决的?
liblayaair.so 总是崩溃,有没有官方人员帮忙解决一下啊
layaair2-cmd 编译bug
LayaAir能做RPG吗?不要问我能不能,因为我已经在做 - 杀意来袭
ui list 里面的元素不能点击两次
(Laya3.0非常严重BUG) 任意模型,只要坐标值越大,模型扭曲变形越严重
循环依赖不能运行 Circular dependency:
TypeScript下HttpRequest发送Post请求有Bug?
【bug】RigidBody getCenter 影响 applyLinearImpulseToCenter 的正确执行
问题状态
最新活动:
2017-11-13 17:32
浏览:
1498
关注:
2
人
商务合作
4 个回复
ymsdandan
赞同来自:
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
赞同来自:
l13273866189
赞同来自: