大约有 114 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
...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
...(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
...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
...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
...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
...(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
...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
...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
...r); }, setMouseUpHandler: function (context, handler) { this.on(this.EVENT.MOUSE_UP, context, handler); },该按钮实现这功能, 按钮旋转后 点击区域不一致 我们使用的 layaair js库文件做的 2017-03-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20170316
....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