大约有 79 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0032 秒)
...功能,就没有出现阴影效果。 2.8.0设置阴影的代码: var directionLight: Laya.DirectionLight = scene.addChild(new Laya.DirectionLight()) as Laya.DirectionLight; directionLight.color = new Laya.Vector3(0.6, 0.6, 0.6); directionLight.transform.worldMatrix.setForward(new Laya.Vector3(1...
来源: Laya_社区 发布时间: 20201105
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
3D灯光阴影无效 var directionLight:DirectionLight = scene.addChild(new DirectionLight()) as DirectionLight; directionLight.ambientColor = new Vector3(0.7, 0.6, 0.6); directionLight.specularColor = new Vector3(1.0, 1.0, 0.9); directionLight.diffuseColor = new Vector3(1, 1, 1); directionLight.tr...
来源: Laya_社区 发布时间: 20170617
directionLight.direction代码警告提示 定向光设置 directionLight.direction = new Laya.Vector3(-.3, -1, -1); 会提示 Warning: discard property,please use transform's property instead. 去掉就不会, 设置transform会报错 2018-01-12 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20180112
Shader中的 u_DirectionLight.direction 怎么用啊? Laya3D中 shader 我需要获取平行光方向, 我看文档是 u_DirectionLight.direction, 但是我初始化 uniformMap 的时候到底需不需要加 "." 呢? 在顶点着色器中我 通过 uniform vec3 u_DirectionLight.directio...
来源: Laya_社区 发布时间: 20200520
...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
拖动DirectionLight到场景里面,直接卡死编辑模式窗口。其他窗口正常 拖动DirectionLight到场景里面,直接卡死编辑模式窗口。其他窗口正常 附件 : --> 2018-10-25 添加评论 悬赏 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...
来源: Laya_社区 发布时间: 20181025
...ra.addComponent(CameraMoveScript); //方向光 var directionLight = scene.addChild(new Laya.DirectionLight()); directionLight.color = new Laya.Vector3(0.7, 0.6, 0.6); directionLight.direction = new Laya.Vector3(0, -1.0, -1.0); //灯光开...
来源: Laya_社区 发布时间: 20180725
Laya.DirectionLight() 问题, 在舞台上,前后放两个物体,如何才能让一个物体被光照,另一个物体不被光照。(光照方向延两个物体方向)。 2019-01-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20190129
2.1版本shader里的u_DirectionLight.Direction在2.6中对应成了什么东西? 我现在有个2.1的shader ,里面用到了u_DirectionLight.Direction 我想知道在2.6中是怎样取得平行光方向的 2020-08-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20200820