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

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

341. 加载unity导出场景失败 [ 87%]

加载unity导出场景失败 代码: Laya.init(600, 400); var scene=Laya.Scene.load("main/SMain.ls"); Laya.stage.addChild(scene);    错误信息: Warning!,this class[MiniAdpter] already exist: Object Error: LoaderManager:unknown file(E:/LayaAir/ZJKZWDT/bin/main/SMain.ls) extension with: ls....

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

342. 用cannon测试 在U3D 中加MeshCollider后运行报 _addPhysicsCollider错误,取消后,则不会 [ 87%]

...js:13195)     at Sprite3D._activeHierarchy (laya.core.js:13201)     at Scene3D._activeHierarchy (laya.core.js:13201)     at Scene3D._processActive (laya.core.js:13184)     at Scene3D._onAdded (laya.core.js:13255)     at Scene3D._setParent (laya.core.js:13013)     at Scene3D._setParent (l...

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

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

...,代码如下:// 程序入口 class LayaAir3D { /*3D场景*/ private scene:Laya.Scene; /*3D角色*/ private role:Laya.Sprite3D; /*3D摄像机*/ public camera:Laya.Camera; constructor() { //初始化微信小游戏 Laya.MiniAdpter.init(); //初始化引擎 Laya3D.init(0, 0, true); //适配模式 ...

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

344. 材质动画的使用(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 87%]

...源拷贝到项目的资源目录下,那么在项目中可以直接用 `Scene3D.load()` 方法加载或预加载。 参考以下代码,因为变色太慢我们调整了速度,效果如(图1)。 ```typescript //加载场景 Laya.Scene3D.load("res/threeDimen/scene/materialScene/Conventional/...

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

345. 按照范例写的碰撞一直检测不到 this.outHitInfo.distance [ 87%]

...享 微博 QZONE 微信 xuzhipeng 赞同来自: //创建加载场景 this.scene = Laya.loader.getRes("h5/LayaScene_scene03/scene03.ls"); Laya.stage.addChild(this.scene); //设置场景在2D界面最后(最底层为第0层) Laya.stage.setChildIndex(this.scene, 0); //获取场景模型中的角色...

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

346. 用layaair如何加載蒙皮動畫,请问怎么加载.lm文件和.ani文件,有沒有實例可以看下 [ 87%]

....lm文件和.ani文件,有沒有實例可以看下 代碼如下: this.scene = Laya.stage.addChild(new Laya.Scene()); //加载相机 this.camera = this.scene.addChild(new Laya.Camera()); this.scene.CurrentCamera = this.camera; //男角色 this.roleMan = new Laya.MeshSprite3D(Laya.Mesh.load("3d/ma...

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

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

...源拷贝到项目的资源目录下,那么在项目中可以直接用 `Scene3D.load()` 方法加载或预加载。 参考以下代码,因为变色太慢我们调整了速度,效果如(图1)。 ```typescript //加载场景 Laya.Scene3D.load("res/threeDimen/scene/materialScene/Conventional/...

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

348. 材质的功能介绍(JavaScript-3D基础(JS)-LayaAir3D之Material材质) [ 87%]

...格渲染器获取模型上的材质 ```typescript //初始化3D场景 var scene = Laya.stage.addChild(Laya.Loader.getRes("res/threeDimen/scene/ChangeMaterialDemo/Conventional/scene.ls")); //从场景获取球型精灵 this.sphere = scene.getChildByName("Sphere"); //获取球型精灵自带的BlinnP...

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

349. autoDestroyAtRemoved不管为啥值 ,关闭以后,再添加到场景,会重复执行构造函数 [ 87%]

... 1 个回复 kura 赞同来自: 每次open的时候 都是新建了一个scene。可以把scene renderType属性改为instance, 或者将scene保存下来 使用时添加到舞台 2021-10-13 0 4 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起...

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

350. 3D阴影无法渲染出来 [ 87%]

3D阴影无法渲染出来 //添加方向光 var directionLight = scene.addChild(new Laya.DirectionLight()); directionLight.color = new Laya.Vector3(0.6, 0.6, 0.6); directionLight.direction = new Laya.Vector3(1, -1, 0); directionLight.shadow = true; directionLight.shadowDistance = 3; directionLight...

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