大约有 177 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0032 秒)
...示,但是改变不了position var tempmodels = Laya.loader.getRes("res/LayaScene_Alien/Assets/FBXs_Stacy/EnvArctic_alien-EnvArctic_alien.lm"); this.meshSprite3D = new Laya.MeshSprite3D(tempmodels); scene.addChild(this.meshSprite3D); this.meshSprite3D.transform.position.x = 0; this.meshSprite3D.tr...
来源: Laya_社区 发布时间: 20180926
...正常显示场景? 资源已经在压缩包里,就一个立方体 LayaScene_test.zip 2017-12-05 0 1 分享 微博 QZONE 微信 w83720521 赞同来自: 好像不是你说的那样,,,我按照按个教程把express装好了,然后项目放到myapp的文件下,就显示了,不过有...
来源: Laya_社区 发布时间: 20171205
...lugin 1.7.16 加载场景代码:var scene:Laya.Scene=Laya.Scene.load("../LayaScene_Museum/Museum.ls"); Laya.stage.addChild(scene); 报错throw new Error("LoadModelV03: unknown vertexDeclaration."); 出现异常 2018-07-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20180719
...子的位置 var particleSprite3D:Laya.Sprite3D = Laya.Sprite3D.load("res/LayaScene_effect/effect.lh") as Laya.Sprite3D; particleSprite3D.transform.translate(new Laya.Vector3(0,20,0)) this.scene.addChild(particleSprite3D); 用u3d导出的粒子效果,不能移动粒子的位置 2018-05-16 添加...
来源: Laya_社区 发布时间: 20180516
...aya运行 代码就一个加载ls文件 Laya.Scene3D.load("res/LayaScene_Level1/Conventional/Level1.ls",Laya.Handler.create(null,function(scene){ //加载完成获取到了Scene3d Laya.stage.addChild(scene); })); 附件 : --...
来源: Laya_社区 发布时间: 20210428
...每次都要 let waimianSp:Laya.Sprite3D = Laya.loader.getRes("res/atlas/LayaScene_test2/Conventional/test2.lh") as Laya.Sprite3D; let sp3d:Laya.Sprite3D = waimianSp.getChildByName("KWHF_L") as Laya.Sprite3D; sp3d才是我要用到的模型(并且我每个模型文件里面只有一个模型)...
来源: Laya_社区 发布时间: 20200420
...imationTemplet(); var tempet:AnimationTemplet = AnimationTemplet.load("res/LayaScene_body1/Assets/H5/body-idle1.lani"); // debugger skinAnimation.templet = tempet body.addComponent(AttachPoint); attachPoint = body.getComponentByType(AttachPoint) as AttachPoint; attachPoint.attachBones.push("Bip001 R...
来源: Laya_社区 发布时间: 20170819
...成后能否获取到具体是哪个对象资源完成 this.LoadAsset("res/LayaScene_H5TestScene/H5TestScene.ls"); private LoadAsset(path: string): void { Laya.loader.create(path, Laya.Handler.create(this, this.OnAssetComplete)); } private OnAssetComplete(): void { console.log("on asset complete:");...
来源: Laya_社区 发布时间: 20180316
...?? //添加3D场景 var scene = Laya.stage.addChild(Laya.scene.load("LayaScene_test/test.ls")); 载入场景怎么什么也没有呢 然后是这样的结果 这是什么情况?? 附件 : --> 2017-08-07 1 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...
来源: Laya_社区 发布时间: 20170807
... this.loadScene("test/TestScene.scene"); //加载场景 Laya.Scene3D.load('LayaScene_test/Conventional/test.ls',Laya.Handler.create(this,this.onComplete)) } /** * 加载完成 */ onComplete(scene){ // 将场景加到舞台上 Laya.stage.addChild(scene); } } ``` 运行效果(图2): ![](img/2.pn...
来源: Laya2.0_文档 发布时间: 20210715