Browse Source

Remove outdated comment (#24966)

WestLangley 2 years ago
parent
commit
727ef10fdf
1 changed files with 0 additions and 4 deletions
  1. 0 4
      src/renderers/webgl/WebGLLights.js

+ 0 - 4
src/renderers/webgl/WebGLLights.js

@@ -333,10 +333,6 @@ function WebGLLights( extensions, capabilities ) {
 
 				const uniforms = cache.get( light );
 
-				// (a) intensity is the total visible light emitted
-				//uniforms.color.copy( color ).multiplyScalar( intensity / ( light.width * light.height * Math.PI ) );
-
-				// (b) intensity is the brightness of the light
 				uniforms.color.copy( color ).multiplyScalar( intensity );
 
 				uniforms.halfWidth.set( light.width * 0.5, 0.0, 0.0 );