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

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

21. 在Unity中设置动画事件(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 74%]

...be。 ```typescript //加载场景 Laya.Scene3D.load("res/threeDimen/scene/LayaScene_AnimationEvent/Conventional/layaScene.ls", Laya.Handler.create(this, function(scene) { Laya.stage.addChild(scene); //获取cube对象 var cube = scene.getChildByName("Cube"); //添加组件(脚本) var _script = cub...

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

22. 在Unity中设置动画事件(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 74%]

...be。 ```typescript //加载场景 Laya.Scene3D.load("res/threeDimen/scene/LayaScene_AnimationEvent/Conventional/layaScene.ls", Laya.Handler.create(this, function(scene) { Laya.stage.addChild(scene); //获取cube对象 var cube = scene.getChildByName("Cube") as Laya.Sprite3D; //添加组件(脚本) ...

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

23. Laya3D 官方请看:有关Laya.MeshSprite3D.instantiate的Bug [ 73%]

...==================  let temp:Laya.Sprite3D = Laya.Sprite3D.load("res/Coin/layaScene.lh") as Laya.Sprite3D;  scene.addChild(temp);  temp.on(Laya.Event.HIERARCHY_LOADED,this,()=>  {  this.model = Laya.MeshSprite3D.instantiate(temp,scene) as Laya.MeshSprite3D;  if(index == 0)  {  this.model....

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

24. 在Unity中设置动画事件(ActionScript-3D基础(AS3)-LayaAir3D之Animator动画) [ 73%]

...给cube。 ```typescript //加载场景 Scene3D.load("res/threeDimen/scene/LayaScene_AnimationEvent/Conventional/layaScene.ls", Handler.create(this, function(scene:Scene3D):void { Laya.stage.addChild(scene) as Scene3D; //获取cube对象 var cube:Sprite3D = scene.getChildByName("Cube"); //添加组...

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

25. TextureCube. setSixSideImageSources () [ 72%]

...览: 754 关注: 3 人 colby • 2019-07-31 22:07 Laya.loader.load("LayaScene_6/Conventional/Assets/New Folder/qiu2_NegativeX.png", Laya.Handler.create(null, (tex) => { var _textureCube = new Laya.TextureCube(); var img:Laya.Image = new Laya.Image(); img.texture=tex; _textureCube.setSix...

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

26. 新手,从unity导出地形的问题 [ 71%]

...   在IDE里面用代码加载   var scene = Laya.Scene.load("res/scene/LayaScene_cz1/cz1.ls"); 浏览器测试,加载失败 WebGL: INVALID_OPERATION: useProgram: program not valid [.Offscreen-For-WebGL-00615668]GL ERROR :GL_INVALID_OPERATION : glDrawElements: attempt to access out of range vert...

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

27. unity导出的场景.ls加载到laya3d中报错 [ 71%]

...REEN_NONE; Laya.Stat.show(); //添加3D场景 var scene = Laya.Scene.load("LayaScene_unity1/unity1.ls"); Laya.stage.addChild(scene); //创建摄像机(横纵比,近距裁剪,远距裁剪) var camera= new Laya.Camera( 0, 0.1, 1000); //加载到场景 scene.addChild(camera); //移动摄像机位...

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

28. Unity插件导出模型 [ 71%]

...含导出的资源文件,麻烦帮忙看下   Laya.Sprite3D.load("res/LayaScene_Model_71008/Model_71008.lh", Laya.Handler.create(null, function(sprite:Laya.Sprite3D):void { scene.addChild(sprite); sprite.transform.localScale = new Laya.Vector3(0.2, 0.2, 0.2); }));   报错信息 Uncaught TypeErr...

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

29. 微信小游戏默认项目代码添加unity导出.lh文件,微信开发工具提示错误 [ 69%]

....meshRender.material = material; //加载3D资源 Laya.loader.create(["res/LayaScene_girl/girl.lh"],Laya.Handler.create(this,this.on3DComplete)); } /*加载3D资源完成回调*/ private on3DComplete():void{ //创建3D角色 //实例化角色 this.role = Laya.loader.getRes("res/LayaScene_girl/girl.l...

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

30. (实现手指控制模型的缩放旋转)触控可以识别 但是导入的模型没有根据触控反应 [ 67%]

...    //预加载所有资源         var resource = [{url: "Box/LayaScene_JJF/Conventional/JJF.lh"}];         Laya.loader.create(resource, Laya.Handler.create(this, this.onComplete)); } onComplete(){ //创建场景         var scene = Laya.stage.addChild(new Laya.Scene3D()...

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