大约有 154 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0032 秒)
Laya3.0_api(79) Laya_社区(58) Laya2.0_文档(6) Laya3.0_文档(4) laya_api(2) Laya_示例(2) Laya2.0_api(2) Laya2.0_示例(1)
...有时还会发送事件 this.event(...),在关闭面板时设置 this.removeSelf() ,下次生成同类型的对象面板可正常打开;若在关闭时设成 this.destroy() 或 this.destroy(false),新面板打开时会报错 cannot read property 'xxx' of null。请问 this.removeSelf() 是...
来源: Laya_社区 发布时间: 20170914
...sionEnter(other){ if(other.other.owner.name==="end"){ // this.owner.parent.removeSelf(); //删除自身场景 console.log(this.owner.parent) console.log(this.owner.parent.parent); //创建胜利的UI界面 let victoryScene=new VictoryScene(); Laya.stage.addChild(victoryScene); this.isDelete=true;...
来源: Laya_社区 发布时间: 20190903
...加 this.owner.addComponent(Laya.RigidBody)后; 在调用 this.owner.removeSelf()后会抛错 : laya.core.js:13190 Uncaught 无法实例class RigidBody extends Laya.Component {... 2.但如果将Laya.RigidBody组件直接挂在预制体上,用this.owner.getComponent(Laya.RigidBody)设置后,在...
来源: Laya_社区 发布时间: 20200119
... 赞同来自: gls_laybox 移除遮罩层:Laya.Dialog.manager.maskLayer.removeSelf(); (之后遇到类似问题的话可以先看下引擎源码中是怎么实现的) 2017-08-09 1 0 分享 微博 QZONE 微信 cuixueying 赞同来自: gls_laybox 不清楚你的具体操作,最好有个例子...
来源: Laya_社区 发布时间: 20170809
...00, null,Handler.create(this,playEnd)) } function playEnd() { mLabelSprite.removeSelf(); } })();module laya { import EventData = Laya.EventData; import Skeleton = Laya.Skeleton; import Templet = Laya.Templet; import Sprite = Laya.Sprite; import Event = Laya.Event; import Browser = Laya.Browser; impo...
来源: Laya_示例 发布时间: 20241126
...1000, null, Handler.create(this, this.playEnd)) } playEnd() { mLabelSprite.removeSelf(); } } new Skeleton_SpineEvent();module laya { import EventData = Laya.EventData; import Skeleton = Laya.Skeleton; import Templet = Laya.Templet; import Sprite = Laya.Sprite; import Event = Laya.Event; import Brows...
来源: Laya2.0_示例 发布时间: 20241126
场景切换问题 场景切换 this.removeSelf(); gamewbz.removeSelf(); hallwbz = hallwbz || new HallViewwbz(); Laya.stage.addChild(hallwbz); 这样写 有没有问题,,,用这样的方式写 ,我切换 了 3个页面 ,然后发现这3个页面都还存在,,这样是不是...
来源: Laya_社区 发布时间: 20171024
...ld(hero) Laya.timer.once(3000, this, gameOver) } function gameOver() { map.removeSelf() play.removeSelf() over = new GameOverUI() over.txt_score.text = "25" over.btn_restart.on(Event.MOUSE_UP,this,gameInit) Laya.stage.addChild(over); } hero类: (function() { function Hero(type, hp) { Hero.__super....
来源: Laya_社区 发布时间: 20180911
...alog黑色遮罩删除不了 你好,为何我的dialog用destroy(true)或removeSelf()删除,背景的黑色遮罩都删除不了? 2018-07-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 Laya_Aaron 赞同...
来源: Laya_社区 发布时间: 20180729
... } 出现问题原因:假如子控件在onEnable或者onAwake里调用removeSelf()(其它能从父控件移除的方法也一样)时,那么该函数就会报错,报错位置就是for循环里的child是undefined,不包含_getBit方法,出错原理是子控件从父控件移除会改...
来源: Laya_社区 发布时间: 20190730