728x90
반응형
const light = new THREE.DirectionalLight(0xffffff, 1);
scene.add(light);
three.js 객체에서 DirectionalLight()를 통해 직선광 객체를 생성할 수 있다. scene에 light객체를 추가하여 빛을 추가할 수 있다.
light.position.x = 2;
light 객체의 position좌표를 설정할 수 있다.
728x90
반응형
'개발 · 컴퓨터공학' 카테고리의 다른 글
three.js 안개 만들기 (0) | 2022.08.27 |
---|---|
three.js 애니메이션 (0) | 2022.08.26 |
three.js 배경색 칠하기 (0) | 2022.08.24 |
three.js 반응형 canvas (0) | 2022.08.23 |
three.js Camera - Orthographic (0) | 2022.08.22 |