大约有 56 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0039 秒)
MOUSE_DOWN、MOUSE_UP,CLICK 三个鼠标事件,实现按下,松开,对象缩小和放大,点击事件打开对应界面。 问题:鼠标按下后,移开之后再松开。MOUSE_UP和CLICK都没有触发。导致对象缩小了却没有回归到正常状态。如何解决这问题呢? 2...
来源: Laya_社区 发布时间: 20180414
...多游戏里面都需要的,, 阿呆 • 2020-09-22 21:34 mouse_move和mouse_down 也可以用这方法吗?
来源: Laya_社区 发布时间: 20180111
...始化资源加载完成 */ private initF():void{ Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseHandler); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseHandler); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseHandler); } private mouseHandler(e:laya.events.Event):void { var touches:...
来源: Laya_社区 发布时间: 20181102
...享 微博 QZONE 微信 asdf131 赞同来自: { this.on(laya.events.Event.MOUSE_DOWN ,this, this.onMouseDown); this.on(laya.events.Event.MOUSE_UP ,this, this.onMouseUp); } private onMouseDownX : number; private onMouseDownY : number; private i...
来源: Laya_社区 发布时间: 20160823
... Laya.stage.addChild(b); b.on(Event.MOUSE_DOWN, this, mouseHandler); b.on(Event.MOUSE_MOVE, this, mouseHandler); b.on(Event.MOUSE_UP, this, mouseHandler); trace("addEvent"); ...
来源: Laya_社区 发布时间: 20170517
... test.create(); // var test = new Q1Buff1(); Laya.stage.off(Laya.Event.MOUSE_DOWN); Laya.stage.off(Laya.Event.MOUSE_MOVE); Laya.stage.off(Laya.Event.MOUSE_UP) Laya.stage.off(Laya.Event.MOUSE_OUT); // 鼠标按下事件 Laya.stage.on(Laya.Event.MOUSE_DOWN, this.snakeSelf, this.snakeSelf.onMouse...
来源: Laya_社区 发布时间: 20180514
...后离开屏幕表面(未超出屏幕范围)会触发哪些事件? MOUSE_DOWN MOUSE_OVER MOUSE_UP? 会触发MOUSE_OUT吗? 因为在LayaIDE里难以模拟手机上的操作,而手机上又看不了打印,所以才问一下。 2018-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20180416
...jump.onClick(this, this.onJump) this.view.m_left.on(Laya.Event.MOUSE_DOWN,this, this.onleft) this.view.m_left.on(Laya.Event.MOUSE_UP,this, this.notleft) this.view.m_right.on(Laya.Event.MOUSE_DOWN,this, this.onright) this.view.m_right.on(Laya.Event.MOUS...
来源: Laya_社区 发布时间: 20221207
...bgColor = "#000000"; this.ps = new Laya.Sprite(); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.down2) Laya.stage.on(Laya.Event.MOUSE_UP, this, this.up2) Laya.stage.addChild(this.ps); } down2() { this.a = Laya.stage.mouseX; this.b = Laya.stage.mouseY; console.log("鼠标点击的点" + this.a, thi...
来源: Laya_社区 发布时间: 20170721
...alize(owner:Sprite3D):void { super._initialize(owner); Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); Laya.stage.on(Event.MOUSE_OUT, this, mouseOut); var camera:BaseCamera = owner.scene.currentCamera; 没有了 -- currentCamera 2017-02-18 添加评论...
来源: Laya_社区 发布时间: 20170218