大约有 78 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
...反复调用了15次 var effect:Laya.Sprite3D = Laya.Sprite3D.load("res/h5/LayaScene_Effect/Effect.lh"),并且给每个特效设置不同的位置。但是最后这15次调用都是对同一个资源对象进行操作 2018-03-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...
来源: Laya_社区 发布时间: 20180328
...们会修改文档 下面这个是var scene:Scene3D = Laya.loader.getRes("LayaScene_01/loveScene.ls") 2018-10-07 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起人 159*****300 相关问题 两个对象new了一个...
来源: Laya_社区 发布时间: 20180927
... //预加载所有资源 let resource = ["Export/LayaScene_JJF/Conventional/JJF.lh"]; Laya.loader.create(resource, Laya.Handler.create(this, this.onComplete)); } onComplete(){ //创建场景 let scene = Laya.sta...
来源: Laya_社区 发布时间: 20190531
...ult=new Laya.HitResult(); Laya.Scene3D.load("res/LayaScene_game/Conventional/game.ls",Laya.Handler.create(null,function(scene3d){ // HelperApp.a = scene3d; //加载完成获取到了Scene3d scene3d.name = 'good'; ...
来源: Laya_社区 发布时间: 20220506
...去掉了示例代码的旋转摄像机 //加载拖尾 Laya.Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Laya.Handler.create(this,function(sp){ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果 Laya.timer.frameLoop(1...
来源: Laya2.0_文档 发布时间: 20210715
...去掉了示例代码的旋转摄像机 //加载拖尾 Laya.Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Laya.Handler.create(this,function(sp){ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果 Laya.timer.frameLoop(1...
来源: Laya2.0_文档 发布时间: 20210715
...rShape = new BoxColliderShape(10,0,2000); //加载精灵 Sprite3D.load("LayaScene_cu_demo/Conventional/Cu.lh", Handler.create(null, function(sp:Sprite3D):void { cu = scene.addChild(sp) as Sprite3D; cu.transform.rotate(new Vector3(0, -90, 0), true, false); _rb = cu.getComponent(Rigidbody3D) as Ri...
来源: Laya_社区 发布时间: 20190417
....com/smallGame/"; var res3D = ["./Prefab/Conventional/NewBuilds.lh", "./LayaScene_111/Conventional/smoke.lh"]; Laya.loader.create(res3D, Laya.Handler.create(this, this.createBuild));这句子去获取资源,然后用 Laya.Loader.getRes("./Prefab/Conventional/NewBuilds.lh");方法去读取相...
来源: Laya_社区 发布时间: 20190702
...回调呢 this.lz = this.sceneP.addChild(Laya.Sprite3D.load("res/h5/LayaScene_Effect/Effect.lh")) as Laya.Sprite3D; this.lz.once(Event.HIERARCHY_LOADED, this,function():void{ console.error("改变大小"); }); 这么写还是不能回调?
来源: Laya_社区 发布时间: 20180327
...场景 Laya.Scene3D.load("res/threeDimen/scene/materialScene/Conventional/layaScene.ls", Laya.Handler.create(this, function(scene) { Laya.stage.addChild(scene); var camera = scene.getChildByName("Main Camera"); camera.addComponent(CameraMoveScript); })); ```
来源: Laya2.0_文档 发布时间: 20210715