大约有 191 项符合查询结果, 库内数据总量为 31,560 项。 (搜索耗时: 0.0033 秒)
Laya_社区(77) Laya2.0_文档(27) Laya3.0_api(24) Laya_示例(22) Laya3.0_文档(13) laya_api(13) Laya2.0_api(12) Laya2.0_示例(3)
Point Light不能导出? 经过测试,Unity里的 direction light 导出成功,但是使用Point Light时,没有导出成功,看ls文件里,根本没有这个Point Light这个节点。这是为什么?我看引擎文档说支持Point light 难道需要手动new 出来吗? 那美术...
来源: Laya_社区 发布时间: 20171219
...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
...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
...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
...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
...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
...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
...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
...图2-4) 阴影除了设置3D基础对象的MeshRenderer,还需要保证Direction Light的Shadow Mode不为None。 2.4 添加组件 每个3D基础对象,都可以添加组件来实现高级的功能,通过对立方体添加3D物理组件 Rigidbody3D ,勾选重力属性,最后添加碰撞...
来源: Laya3.0_文档 发布时间: 20251010
...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