• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 78 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)

31. 怎么创建多个相同资源的多个Sprite3D [ 67%]

...反复调用了15次 var effect:Laya.Sprite3D = Laya.Sprite3D.load("res/h5/LayaScene_Effect/Effect.lh"),并且给每个特效设置不同的位置。但是最后这15次调用都是对同一个资源对象进行操作 2018-03-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...

来源: Laya_社区 发布时间: 20180328

32. layaair2.0 提示找不到对象属性。 [ 66%]

...们会修改文档 下面这个是var scene:Scene3D = Laya.loader.getRes("LayaScene_01/loveScene.ls") 2018-10-07 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起人 159*****300 相关问题 两个对象new了一个...

来源: Laya_社区 发布时间: 20180927

33. Laya多点触控是有开关吗 为什么多点触控没有任何反应 [ 64%]

...     //预加载所有资源         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

34. 发射射线检测不到,物体有包围盒 [ 63%]

...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

35. 在Unity中导出拖尾系统(JavaScript-3D基础(JS)-LayaAir3D之拖尾系统) [ 63%]

...去掉了示例代码的旋转摄像机 //加载拖尾 Laya.Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Laya.Handler.create(this,function(sp){ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果 Laya.timer.frameLoop(1...

来源: Laya2.0_文档 发布时间: 20210715

36. 在Unity中导出拖尾系统(TypeScript-3D基础(TS)-LayaAir3D之拖尾系统) [ 63%]

...去掉了示例代码的旋转摄像机 //加载拖尾 Laya.Sprite3D.load('LayaScene_tst/Conventional/Sphere.lh',Laya.Handler.create(this,function(sp){ //将加载的拖尾添加给示例盒子 box.addChild(sp); //为了体现效果,我们移动盒子和摄影机观察效果 Laya.timer.frameLoop(1...

来源: Laya2.0_文档 发布时间: 20210715

37. 物理引擎,刚体施加力效果错误,有人帮忙看下吗 [ 63%]

...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

38. 微信小游戏,动态加载资源很慢 [ 63%]

....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

39. HIERARCHY_LOADED函数不回调 [ 62%]

...回调呢 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

40. 材质动画的使用(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 62%]

...场景 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