Browse Source

Removed override `.castShadow`

ycw 4 years ago
parent
commit
bd4f0c2d07
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/lights/AmbientLight.js

+ 0 - 2
src/lights/AmbientLight.js

@@ -6,8 +6,6 @@ function AmbientLight( color, intensity ) {
 
 	this.type = 'AmbientLight';
 
-	this.castShadow = false;
-
 }
 
 AmbientLight.prototype = Object.assign( Object.create( Light.prototype ), {