Przeglądaj źródła

Removed non-matched closing parenthesis...

Elias Hasle 6 lat temu
rodzic
commit
a82a98769d

+ 1 - 1
src/renderers/shaders/ShaderChunk/fog_fragment.glsl.js

@@ -3,7 +3,7 @@ export default /* glsl */`
 
 	#ifdef FOG_EXP2
 
-		float fogFactor = 1.0 - exp( - fogDensity * fogDensity * fogDepth * fogDepth ) );
+		float fogFactor = 1.0 - exp( - fogDensity * fogDensity * fogDepth * fogDepth );
 
 	#else
 

粤ICP备19079148号