Procházet zdrojové kódy

Allow overrideColor to be changed after construction in RectAreaLightHelper

Lewy Blue před 8 roky
rodič
revize
a9fb671218
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      src/helpers/RectAreaLightHelper.js

+ 1 - 0
src/helpers/RectAreaLightHelper.js

@@ -67,6 +67,7 @@ RectAreaLightHelper.prototype.update = function () {
 	position.needsUpdate = true;
 
 	if ( ! this.overrideColor ) this.line.material.color.copy( this.light.color );
+	else this.line.material.color.set( this.overrideColor );
 
 };