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

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

61. 节点的visible在初始化的时候生效,但是在Event的方法里面不生效 为什么呢? [ 69%]

...的 questionNode = trainItem; 后续有一个事件 option.on(Laya.Event.MOUSE_DOWN, null, function(e){   option.startDrag({}, false, 1) }) option.on(Laya.Event.MOUSE_MOVE, null, function(){     questionNode.answers.visible = true; //这个不生效 }); 2017-09-22 0 0 分享 微博 QZONE 微信 ...

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

62. 移动端h5项目如何获取多点触摸的坐标 [ 68%]

...的链接 提交 2 个回复 158*****871 赞同来自: Laya.stage.on(Event.MOUSE_DOWN, this, this.onMouseDown);     onMouseDown(e) { const Event = Laya.Event;   // 手机上才有 touches 属性 let touches = e.touches;   if (touches && touches.length == 2) { preRadian = Math.atan2( touc...

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

63. Event.DRAG_MOVE事件的回调函数中不能拿到event对象是怎么回事? [ 68%]

... Monica • 2017-11-22 17:14 @sfsmmc:DRAG_MOVE是没有回调参数的,MOUSE_DOWN有。这块我们不会去修改,如果有需要的话你可以自己看下源码进行修改 sfsmmc • 2017-11-22 17:27 @Monica 谢谢 sfsmmc • 2017-11-22 16:07 就在官方示例里面,我问题里有说明 ...

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

64. 鼠标事件out ,move 发生再up事件之后 [ 68%]

...this.mouseOutCallback);         // this.bubbleView.on(Laya.Event.MOUSE_DOWN, this, this.mouseDownCallback);     }   然后,鼠标down 0.5秒,松开,就会出现如下的顺序 mouseUpCallback mouseOutCallback mouseMoveCallback out ,move 事件触发再up之后,但如果不长...

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

65. [0]Laya3.0.3 的VideoNode不支持在微信浏览器中播放 [ 68%]

...ne.getChildByName('VideoNode') as Laya.VideoNode; Laya.stage.on(Laya.Event.MOUSE_DOWN,this, ()=>{ console.error('Laya.Event.MOUSE_DOWN'); video.play(); }); 很简单的结构,只有在微信上播放不了 1677851971用户 • 2024-03-16 19:56 测试可以播放了,就是手机微信上视频...

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

66. laya可以支持滑动手势吗 [ 68%]

...同来自: 手势识别主要会用到以下几个方法:_obj.on(Event.MOUSE_DOWNLaya.stage.on(Event.MOUSE_MOVE, Laya.stage.on(Event.MOUSE_UP, Laya.stage.on(Event.MOUSE_OUT,   2017-06-23 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起...

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

67. 如何能监听到TouchStart和TouchEnd事件 [ 68%]

...023 Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); Laya.stage.on(Event.MOUSE_DOWN, this, onApeRelease); 通过 Event  类型 监听动作  class Event {         /** 一个空的 Event 对象。用于事件派发中转使用。*/         static EMPTY: Event;         /** 定...

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

68. 安卓和iPhone的触控差异 [ 68%]

...飞机大战一边滑动一边施放技能 写法如下: stage.on(Event.MOUSE_DOWN, this, onMouseDown); private function onMouseDown(e:Event = null):void { var touches:Array = e.touches; if (touches) { moveX = touches[0].stageX stage.on(Event.MOUSE_MOVE, this, onMouseMove) } } private function onM...

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

69. laya拖拽在部分机型(一部XR)StageX不对 [ 68%]

...机型(一部XR)StageX不对 //注册事件  Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouseEvent);  Laya.stage.on(Laya.Event.MOUSE_UP, this, this.onMouseEvent); Laya.stage.on(Laya.Event.MOUSE_OUT, this, this.onMouseEvent); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseEvent);...

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

70. 按钮旋转 点击区域 [ 67%]

...且 setMouseDownHandler: function (context, handler) { this.on(this.EVENT.MOUSE_DOWN, context, handler); }, setMoveHandler: function (context, handler) { this.on(this.EVENT.MOUSE_MOVE, context, handler); }, setMouseUpHandler: function (context, handler) { this.on(this.EVENT.MOUSE_UP, context, handle...

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