大约有 32 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0027 秒)
Button销毁时,未对_clickHandler进行回收 源代码: destroy(destroyChild = true) { super.destroy(destroyChild); this._bitmap && this._bitmap.destroy(); this._text && this._text.destroy(destroyChild); this._bitmap = null; this._text = null; this._clickHandler = null; this....
来源: Laya_社区 发布时间: 20200514
clickHandler 是不是点击事件 2018-05-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 w1114367261 赞同来自: 你这个是在引擎哪里看到的,我可以帮你看一下! 2018-05-09 0 0 分享 微...
来源: Laya_社区 发布时间: 20180509
clickHandler事件怎么移除? 是不是自己内部处理的? 需要类型跟 on 一样 off ,有其他方法移除? 2018-10-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: off...
来源: Laya_社区 发布时间: 20181029
[LayaAir3]clickHandler只会执行一次,之后点击不再触发 laya.3.0.9 //组件被启用后执行,例如节点被添加到舞台后 onEnable(): void { console.log("2d gamescene onEnable"); let btn:Laya.Button = LayaUtil.GetChildByPath(this.owner...
来源: Laya_社区 发布时间: 20231221
...t.CLICK) { this.toggle && (this.selected = !this._selected); this._clickHandler && this._clickHandler.run(); return; } !this._selected && (this.state = Button.stateMap[e.type]); }上面逻辑当clickHander只执行一次的时候逻辑上有bug,Hander的run执行的时候...
来源: Laya_社区 发布时间: 20191112
...e = 10; rightBtn.x = 100; rightBtn.y = 200; rightBtn.on(Event.CLICK, this, clickHandler); rightBtn.clickHandler = Handler.create(this, function () { console.log('click handler'); }); function clickHandler () { console.log('on click') } Stage.addChild(rightBtn); 请问一下,为什么事件不执...
来源: Laya_社区 发布时间: 20180309
...:Laya.Button = this.main.getchildbuy(i); btn.on(Laya.Event.CLICK,this.this.clickHandle); btn.xx = "xxx"; } private clickHandle(e:Laya.Event):void{ } 类似于我想给btn绑定“xxx”数据,用来给后面点击获取
来源: Laya_社区 发布时间: 20181024
... toggle && (selected = !_selected); _clickHandler && _clickHandler.run(); return; } !_selected && (state = stateMap[e.type]); } 2017-10-20 1 0 分享 微博 QZONE...
来源: Laya_社区 发布时间: 20170926
...is.guideContainer.addChild(maskButton); maskButton.clickHandler = new Laya.Handler(this, () => { if (button) { if (button instanceof Laya.Button) { ...
来源: Laya_社区 发布时间: 20200119
...unction Main() { Laya.init(500,500); Laya.stage.once(Event.CLICK,this,this.clickHandler); } private function clickHandler():void { var iframe:Object = Browser.document.createElement("iframe"); iframe.style.position ="absolute";//设置布局定位。这个不能少。 iframe.style.zIndex = 100;//设...
来源: Laya_社区 发布时间: 20180223