소스 검색

Allow overrideColor to be changed after construction in SpotLightHelper

Lewy Blue 8 년 전
부모
커밋
d080a75c59
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/helpers/SpotLightHelper.js

+ 1 - 0
src/helpers/SpotLightHelper.js

@@ -86,6 +86,7 @@ SpotLightHelper.prototype.update = function () {
 		this.cone.lookAt( vector2.sub( vector ) );
 
 		if ( ! this.overrideColor ) this.cone.material.color.copy( this.light.color );
+		else this.cone.material.color.set( this.overrideColor );
 
 	};