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

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

31. 分享一个虚拟摇杆,比较粗糙,没做优化 [ 77%]

...s.starY = e.stageY; //添加弹起和移动事件 this.layer.on(Laya.Event.MOUSE_UP, this, this.upFun); this.layer.on(Laya.Event.MOUSE_MOVE, this, this.moveFun); } //弹起事件 ModeKey.prototype.upFun = function () { this.isDown = false; this.isUp = false; this.isMove = false; this.isMode = "stop"...

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

32. 加载-销毁Texture使用的图片资源 [ 77%]

...(20, 160); Laya.stage.addChild(this.btn); //添加侦听 this.btn.on(Event.MOUSE_UP, this, this.onMouseUp); } /** * 鼠标事件响应函数 * @param evt */ onMouseUp(evt) { if (this.isDestroyed) { //通过设置 visible=true ,来触发渲染,然后引擎会自动恢复资源 this.spBg.visible =...

来源: Laya2.0_示例 发布时间: 20241117

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

...s, this.mouseMoveCallback);         this.bubbleView.on(Laya.Event.MOUSE_UP, this, this.mouseUpCallback);         this.bubbleView.on(Laya.Event.MOUSE_OUT, this, this.mouseOutCallback);         // this.bubbleView.on(Laya.Event.MOUSE_DOWN, this, this.mouseDownCallback); ...

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

34. 代码创建精灵监听不到事件? [ 76%]

...r arr = {data: StorageRoom.map_storageData[0][0],tag:0}; box.on(Laya.Event.MOUSE_UP,this,this.onclick,[arr]);   var _proto = StorageUILayer.prototype;   _proto.onclick = function(params){ console.log("--------------------------------hhhhhhhhhhh- "); }   -------------------------------------------...

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

35. laya可以支持滑动手势吗 [ 76%]

...on(Event.MOUSE_DOWN,  Laya.stage.on(Event.MOUSE_MOVE, Laya.stage.on(Event.MOUSE_UP, Laya.stage.on(Event.MOUSE_OUT,   2017-06-23 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 jison_ailin 相关问题 看了其他引擎才发现 LAYA ...

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

36. 加载-销毁Texture使用的图片资源 [ 76%]

...(20, 160); Laya.stage.addChild(this.btn); //添加侦听 this.btn.on(Event.MOUSE_UP, this, this.onMouseUp); }; /** * 鼠标事件响应函数 * @param evt */ GameMain.prototype.onMouseUp = function (evt) { if (this.isDestroyed) { //通过设置 visible=true ,来触发渲染,然后引擎会自动...

来源: Laya_示例 发布时间: 20241117

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

...aya.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); //鼠标yi'dong private onMouseEvent(e: Laya.Event): void {   ...

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

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

...eY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finishScrollText); } /* 停止滚动文本 */ private function finishScrollText(e:Event):void { Laya.stage.off(Event.MOUSE_MOVE, this, scrollText); Laya.stage.off(Event.MOUSE_UP, this, finishScrollText); } /* ...

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

39. 按钮旋转 点击区域 [ 75%]

...r); }, setMouseUpHandler: function (context, handler) { this.on(this.EVENT.MOUSE_UP, context, handler); },该按钮实现这功能, 按钮旋转后 点击区域不一致 我们使用的 layaair js库文件做的 2017-03-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

40. webGL模式下 graphic画线涂鸦,一直不停画会出现线条异常 [ 75%]

....on(Laya.Event.MOUSE_MOVE, this, this.__mouseMove); this.bmp.on(Laya.Event.MOUSE_UP, this, this.__mouseUp); console.log(this.pos0.x); } __mouseMove(e:Event){ this.pos1.x=this.bmp.mouseX this.pos1.y=this.bmp.mouseY; if(Utils3D.getThis.getDistance(this.pos0,this.pos1)>10){ this.bmp.graphics.drawLin...

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