Spaces:
Running
Running
File size: 384 Bytes
0b12ad4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { DirectionalLight, HemisphereLight } from 'https://unpkg.com/[email protected]/build/three.module.js';
function createLights() {
const ambientLight = new HemisphereLight(
'white',
'darkslategrey',
5,
);
const mainLight = new DirectionalLight('white', 4);
mainLight.position.set(10, 10, 10);
return { ambientLight, mainLight };
}
export { createLights };
|