大约有 1,193 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(664) Laya3.0_api(153) laya_api(104) Laya2.0_api(96) Laya2.0_文档(63) Laya2.0_示例(44) Laya_示例(42) Laya3.0_文档(27)
...等于直接执行了 this.MoAndRe('EnRemove', ani); 需要改成 ani.on(Event.COMPLETE, this, this.MoAndRe, ['EnRemove', ani]) 2018-03-05 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 xlolic 相关问题 spine动画播放后图集错...
来源: Laya_社区 发布时间: 20180305
...件没反应 遮罩点击事件 图片添加点击事件 有的不生效 event自定义事件的问题 微信小游戏与加载图片时不会触发erroe事件 重力感应 Accelerator 发布微信游戏后失效。是因为什么? 问题状态 最新活动: 2017-11-18 13:07 浏览: 884 关注: 2 ...
来源: Laya_社区 发布时间: 20171116
...能触发onCollisionEnter事件 遮罩点击事件 点击事件不起效 event自定义事件的问题 问题状态 最新活动: 2020-08-07 17:31 浏览: 281 关注: 2 人
来源: Laya_社区 发布时间: 20200801
...截屏! package { import laya.display.Sprite; import laya.events.Event; import laya.resource.HTMLCanvas; import laya.resource.Texture; import laya.utils.Browser; import laya.webgl.WebGL; public class LayaAirDemo { private var s...
来源: Laya_社区 发布时间: 20170424
...calSize = 5; this.effRes = Laya.Sprite3D.load(resUrl); this.effRes.on(Laya.Event.HIERARCHY_LOADED, this, function(){ this.eff1 = scene.addChild( Laya.Sprite3D.instantiate(this.effRes)); this.eff1.transform.position = new Laya.Vector3(0,0,50); this.eff1.transform.rotate(new Laya.Vector3(0, 60, 0), tr...
来源: Laya_社区 发布时间: 20180503
...useConstraint, ground, pyramid, ground2, pyramid2, rock, elastic]); Matter.Events.on(engine, 'afterUpdate', function() { if (mouseConstraint.mouse.button === -1 && (rock.position.x > 190 || rock.position.y 190 || rock.position.y 190 || rock.position.y < 430)) { rock = Matter.Bodies.polygon(170, 450,...
来源: Laya_示例 发布时间: 20241118
....width / 2, Laya.stage.height / 2); this.switchTexture(); this.ape.on(Laya.Event.CLICK, this, this.switchTexture); } switchTexture() { let monkey = (this.flag = !this.flag) ? monkey1Res : monkey2Res; this.ape.graphics.clear(); this.ape.graphics.drawTexture(monkey, 0, 0); this.ape.size(monkey.width, ...
来源: Laya2.0_示例 发布时间: 20241118
...画能正常播放。 this.role = new Laya.Animation(); this.role.on(Laya.Event.MOUSE_DOWN, this, this.onDrag); 2018-07-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Laya_Aaron 赞同来自: 这种问题不用...
来源: Laya_社区 发布时间: 20180718
...ackage { import laya.display.Sprite; import laya.display.Text; import laya.events.Event; import laya.resource.HTMLCanvas; import laya.resource.Texture; import laya.utils.Browser; import laya.utils.Stat; public class LayaAirDemo { private var sp:Sprite ;//被截屏对象 private var htmlC:HTMLCanvas;...
来源: Laya_社区 发布时间: 20170822
...aya.Sprite(); sp.graphics.drawPie(0, 0, 300, 0, 90, "#00ffff"); sp.on(Laya.Event.CLICK, this, this.aa) sp.mouseEnabled = true; // 设置点击区域没有作用 var hitArea = new Laya.HitArea(); hitArea.unhit.drawPie(0, 0, 150, 0, 90, "#00ffff"); sp.hitArea = hitArea; 我想要实现的效果就是...
来源: Laya_社区 发布时间: 20180119