Browse Source

Light: Set receiveShadow to undefined.

Mr.doob 9 years ago
parent
commit
d1bfad4b35
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/lights/Light.js

+ 2 - 0
src/lights/Light.js

@@ -11,6 +11,8 @@ THREE.Light = function ( color ) {
 
 	this.color = new THREE.Color( color );
 
+	this.receiveShadow = undefined;
+
 };
 
 THREE.Light.prototype = Object.create( THREE.Object3D.prototype );