2
0
Эх сурвалжийг харах

Remove unnecessary comma and add missing semicolon in webgl_interactive_points

Tristan Valcke 8 жил өмнө
parent
commit
3eaaeeb3b6

+ 2 - 2
examples/webgl_interactive_points.html

@@ -119,7 +119,7 @@
 					vertex = vertices[ i ];
 					vertex.toArray( positions, i * 3 );
 
-					color.setHSL( 0.01 + 0.1 * ( i / l ), 1.0, 0.5 )
+					color.setHSL( 0.01 + 0.1 * ( i / l ), 1.0, 0.5 );
 					color.toArray( colors, i * 3 );
 
 					sizes[ i ] = PARTICLE_SIZE * 0.5;
@@ -142,7 +142,7 @@
 					vertexShader: document.getElementById( 'vertexshader' ).textContent,
 					fragmentShader: document.getElementById( 'fragmentshader' ).textContent,
 
-					alphaTest: 0.9,
+					alphaTest: 0.9
 
 				} );