大约有 21 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0029 秒)
...何取得场景实例? 我看了Laya.Scene.open中的参数: complete:Handler (default = null) — 打开完成回调,返回场景实例(可选) 那么我要怎么从这个handler里边得到打开场景实例呢: 以下是我写的typescript代码: class Main { onConfigLoaded(...
来源: Laya_社区 发布时间: 20181206
Laya.Scene.open方法中的complete的handler不返回 Laya.Scene.open方法中的complete的handler在IDE中调试正常,但在微信小游戏中不返回,请问是什么原因。 2019-02-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20190219
Laya.Scene.open方法中的complete的handler在IDE中调试正常,但在微信小游戏中不返回,请问是什么原因。 Laya.Scene.open方法中的complete的handler在IDE中调试正常,但在微信小游戏中不返回,请问是什么原因。 2019-02-20 添加评论 免费帖 --> ...
来源: Laya_社区 发布时间: 20190220
...Scene = scene Laya.Scene.setLoadingPage(scene) } /** * 打开场景 * otherHandler 执行时间小于 loadScene 使用此方法 * otherHandler 不会阻塞 loadScene * @param {String} url 要打开的场景 * @param {Promise} otherHandler 同时执行的其它事件 * @param {Boolean} closeOther 关...
来源: Laya_社区 发布时间: 20181124
... 建议把scene里的静态方法: static load(url: string, complete?: Handler, progress?: Handler): void; static open(url: string, closeOther?: boolean, param?: any, complete?: Handler, progress?: Handler): void; static close(url: string, name?: string): boolean; static closeAll(): void; static s...
来源: Laya_社区 发布时间: 20181128
...请: 与内容相关的链接 提交 1 个回复 geyx 赞同来自: var handler : laya.utils.Handler = Laya.Handler.create(this, this.onGetStartScene); Laya.Scene.open("test/TestScene.scene", true, null, handler )在回调里加3D模型就显示正常了。 2020-01-15 0 0 分享 微博 QZO...
来源: Laya_社区 发布时间: 20200115
...aya.loader.load(['remote/music/' + this.soundUrl + '.mp3'], new Laya.Handler(this, () => { this.store.isDemo = true; Laya.Scene.open("scene/Home.scene") }), new Laya.Handler(this, (value: number...
来源: Laya_社区 发布时间: 20201102
...props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 * @param duration 花费的时间,单位毫秒。 * @param ease 缓动类型,默认为匀速运动。 ...
来源: Laya_社区 发布时间: 20180621
...loader,那就不用处理了。 Laya.loader.load("res/aaa.scene", Laya.Handler.create(null, (content)=>{console.log(content)})); Laya.loader.load("res/bbb.json", Laya.Handler.create(null, (content)=>{console.log(content)})); 2019-04-25 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个...
来源: Laya_社区 发布时间: 20190425
...lone() as s3d;//s3d.instantiate(x.s3ds[id]); } static loads3d(id, path, handler=null):void{ s3d.load(path, Laya.Handler.create(null, function(sp){ x.s3ds[id] = sp; if(handler)handler.loadeds3d(id, sp); })); } 我首先用loads3d方法加载所有的.lh文件,然后用Sprite3D.instantiate...
来源: Laya_社区 发布时间: 20191004