• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 67 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)

41. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 56%]

...   {         createMap();          Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown);         Laya.stage.on(Event.MOUSE_UP, this, mouseUp);     })(); //创建地图     function createMap()     {         //创建地图对象         tiledMap = n...

来源: Laya_社区 发布时间: 20180614

42. 为对象创建Laya.Event.MOUSE_UP 和 Laya.Event.CLICK 事件的问题,, [ 56%]

...多游戏里面都需要的,, 阿呆 • 2020-09-22 21:34 mouse_movemouse_down 也可以用这方法吗?

来源: Laya_社区 发布时间: 20180111

43. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 56%]

...   {         createMap();          Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown);         Laya.stage.on(Event.MOUSE_UP, this, mouseUp);     })(); //创建地图     function createMap()     {         //创建地图对象         tiledMap = n...

来源: Laya_社区 发布时间: 20180612

44. 发布微信后无法触发mouse_up事件 [ 55%]

...始化资源加载完成 */ 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

45. 触发器不起作用 [ 55%]

...致整个游戏卡死 matter.js在laya中opacity透明属性不起作用 MOUSE_DOWNMOUSE_MOVE同时存在,不起作用,哪位大神可以帮忙看看,是为什么 scrollRect pivot 同时使用,pivot不起作用 3d物理引擎设置碰撞盒isTrigger为true的话,旋转不起作用 ...

来源: Laya_社区 发布时间: 20230711

46. Laya.stage.on的Mouse事件,正常情况下没问题,但是Laya.stage.pos移动后就失灵了,请问如何解决? [ 55%]

...tage.on(Laya.Event.MOUSE_UP, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouse); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouse); 在frameLoop中,我让Laya.stage.pos(movex,movey)后,就再不会调用this.onMouse事件了,请问如何解决? 2018-03-11 ...

来源: Laya_社区 发布时间: 20180311

47. 超出文本区域的处理&滚动文本(JavaScript-LayaAir基础篇(JS)-文本) [ 55%]

...ntSize = 20; txt.color = "#ffffff"; Laya.stage.addChild(txt); txt.on(Event.MOUSE_DOWN, this, startScrollText); } /* 开始滚动文本 */ function startScrollText(e) { prevX = txt.mouseX; prevY = txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finis...

来源: Laya2.0_文档 发布时间: 20210714

48. 超出文本区域的处理&滚动文本(ActionScript-LayaAir基础篇(AS3)-文本) [ 54%]

...ntSize = 20; txt.color = "#ffffff"; Laya.stage.addChild(txt); txt.on(Event.MOUSE_DOWN, this, startScrollText); } /* 开始滚动文本 */ private function startScrollText(e:Event):void { prevX = txt.mouseX; prevY = txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MO...

来源: Laya2.0_文档 发布时间: 20210715

49. [0]Event.Mouse_Drag和Event.Mouse_Drag_End在不注册鼠标事件的情况下无法 [ 54%]

...事件的情况下无法 const MOUSE_EVENTS = new Set([         Event.MOUSE_DOWN, Event.MOUSE_UP, Event.MOUSE_MOVE, Event.CLICK, Event.DOUBLE_CLICK,         Event.RIGHT_CLICK, Event.RIGHT_MOUSE_DOWN, Event.RIGHT_MOUSE_UP,         Event.MOUSE_OVER, Event.MOUSE_OUT, Event.MOUSE_WHEEL    ...

来源: Laya_社区 发布时间: 20231106

50. 超出文本区域的处理&滚动文本(TypeScript-LayaAir基础篇(TS)-文本) [ 53%]

...is.txt.color = "#ffffff"; Laya.stage.addChild(this.txt); this.txt.on(Event.MOUSE_DOWN, this, this.startScrollText); } /* 开始滚动文本 */ private startScrollText(e: Event): void { this.prevX = this.txt.mouseX; this.prevY = this.txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, this.scrollText);...

来源: Laya2.0_文档 发布时间: 20210715