大约有 322 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0055 秒)
...父节点。Node scene : Scene[read-only] 获得所属场景。 Sprite3D timer : Timer时间控制器,默认为Laya.timer。Node transform : Transform3D[read-only] 获取精灵变换。 Sprite3D url : String 获取资源的URL地址。 Sprite3D width : Number[read-only] 获取地形X轴长...
来源: laya_api 发布时间: 20170929
...dy.appendChild(this.nativeImg) } onEnable() { Laya.timer.once(1000, this, this.delayShowImg); } delayShowImg() { let canvas = this.drawToCanvas(Laya.stage.width, Laya.stage.height, 0, 0); let str = canvas.toBase64('image/jpeg', 0.9); ...
来源: Laya_社区 发布时间: 20230323
...a.Scene.open(GameConfig.startScene); Laya.timer.once(1000, this, this.a) } private a () { let a:Sprite = Laya.stage.getChildAt(0).getChildAt(0).getChildByName("A") as Sprite; let b:Sprite = Laya.st...
来源: Laya_社区 发布时间: 20200813
...显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node clone():Node 克隆。 Sprite3D contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node de...
来源: Laya2.0_api 发布时间: 20190513
...显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node clone():Node 克隆。 Sprite3D contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node de...
来源: Laya2.0_api 发布时间: 20190513
...交 2 个回复 虚世繁华 赞同来自: constructor() { super(); Laya.timer.once(1,this,()=> { Laya.Scene3D.load('LayaScene_Main/Conventional/Main.ls',Laya.Handler.create(this,(scene:Laya.Scene3D)=> { Laya.stage.addChild(scene); })); }); } 这样的加载一定包异常,不延时...
来源: Laya_社区 发布时间: 20190719
...享 微博 QZONE 微信 LT 赞同来自: Laya.stage.addChild(this); Laya.timer.once(500,this,test); 转坐标放在后面加了个延时执行。。就没问题了。。应该是执行的时候组件还没有全部加进stage。。 2018-12-20 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个...
来源: Laya_社区 发布时间: 20181219
...on3.addChild(_p2); } else { _p.removeSelf(); _p2.removeSelf(); } c++; Laya.timer.once(2000, this, ShowHide); } 【native2.0中】stage上加几个平级container,然后再同一container上加两个ui,移除舞台后再加上必然无法显示 网页中是正常的 注意:直接加到舞...
来源: Laya_社区 发布时间: 20181025
...显示在屏幕之前调用,一般用于延迟计算数据。 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node clone():Node 克隆。 Sprite3D contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node de...
来源: Laya2.0_api 发布时间: 20190513
....load(blob_url); Laya.stage.addChild(video); video.play(); v = video; Laya.timer.once(5000, this, function() { v.destroy(); }); }顺便提供一个简单的修复方法: laya.device.js Line 623: 增加以下代码while(this.videoElement.childElementCount) { this.videoElement.firstChild.remove(); ...
来源: Laya_社区 发布时间: 20170515