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

大约有 191 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0032 秒)

131. Point Light不能导出? [ 53%]

Point Light不能导出? 经过测试,Unity里的 direction light 导出成功,但是使用Point Light时,没有导出成功,看ls文件里,根本没有这个Point Light这个节点。这是为什么?我看引擎文档说支持Point light 难道需要手动new 出来吗? 那美术...

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

132. Laya3d场景在部分andriod设备微信小游戏出现场景加载错误问题 [ 53%]

...go __invokeHandler__ VM59:164 Error: not node js file system!path:res/base/Directional Light.lh; go __invokeHandler__   附件 : --> 2020-06-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 173*****655 赞同来...

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

133. 加载不了模型 [ 52%]

...Component(CameraMoveScript);         //添加方向光         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);         //添加自定义...

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

134. 3D加载不了 [ 52%]

...Component(CameraMoveScript);         //添加方向光         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);         //添加自定义...

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

135. 动态阴影被切割了?为啥没有显示完成的阴影 [ 52%]

...mera.clearColor = null; camera.orthographic = false; //添加方向光 var directionLight = scene.addChild(new Laya.DirectionLight()); directionLight.color = new Laya.Vector3(1, 1, 1); directionLight.direction = new Laya.Vector3(-1, -1, 0); directionLight.shadow = true; directionLight.shadowDistance...

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

136. PBR标准材质实时阴影渲染问题 [ 52%]

...addComponent(ModelViewer); modelViewer.AroundPos = Laya.Vector3._ZERO; var directionLight = (scene_360 as Laya.Node).getChildByName('Directional light') as Laya.DirectionLight; //灯光开启阴影 directionLight.shadow = true; //可见阴影距离 directionLight.shadowDistance = 20; directionLight....

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

137. [LayaAirIDE3]2d相机打包后问题 [ 51%]

...E, this, (data: any) => {             this.playerScript.move(data.direction, data.force);         });          this.joystickScript.owner.on(Joystick.END, this, () => {             this.playerScript.stop();         });          // 可视化边界         this.v...

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

138. 上架的游戏被苹果下架了 [ 51%]

...to deceive users or undermine the review process are unacceptable and is a direct violation Section 3.2(f) of the Apple Developer Program License Agreement. Continuing to violate the Terms & Conditions of the Apple Developer Program will result in the termination of your account, as well as any ...

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

139. 3D基础显示对象 · LayaAir3.3 · 引擎文档 · LAYABOX [ 51%]

...图2-4) 阴影除了设置3D基础对象的MeshRenderer,还需要保证Direction Light的Shadow Mode不为None。 2.4 添加组件 每个3D基础对象,都可以添加组件来实现高级的功能,通过对立方体添加3D物理组件 Rigidbody3D ,勾选重力属性,最后添加碰撞...

来源: Laya3.0_文档 发布时间: 20251010

140. 射线检测-选取物体 [ 51%]

...ector3(-15, 0, 0), true, false); camera.clearColor = null; //方向光 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, -1); //平面 var plane = scene.addChild(new Laya.MeshSpri...

来源: Laya_示例 发布时间: 20251130