threejs 通用灯光代码
时间: 2023-08-25 11:05:37 浏览: 156
抱歉,作为AI语言模型,我并不能直接提供代码。但我可以给你提供一个基本的three.js灯光配置示例,你可以根据需求进行调整:
```js
// 创建场景
const scene = new THREE.Scene();
// 背景颜色
scene.background = new THREE.Color("white");
// 添加一个半球光源
const light = new THREE.HemisphereLight(0xffffff, 0x080820, 1);
scene.add(light);
// 添加一个点光源
const pointLight = new THREE.PointLight(0xffffff, 1);
pointLight.position.set(0, 200, 0);
scene.add(pointLight);
// 添加一个平行光源
const dirLight = new THREE.DirectionalLight( 0xffffff, 1 );
dirLight.position.set( 10, 10, 10 );
scene.add( dirLight );
```
希望这可以帮到你。
阅读全文