소스 검색

Set `.castShadow` to `false`

ycw 4 년 전
부모
커밋
3729e74a43
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/lights/HemisphereLight.js

+ 1 - 1
src/lights/HemisphereLight.js

@@ -8,7 +8,7 @@ function HemisphereLight( skyColor, groundColor, intensity ) {
 
 	this.type = 'HemisphereLight';
 
-	this.castShadow = undefined;
+	this.castShadow = false;
 
 	this.position.copy( Object3D.DefaultUp );
 	this.updateMatrix();