Explorar o código

Add missing semicolon in webgl_custom_attributes_lines

Tristan Valcke %!s(int64=8) %!d(string=hai) anos
pai
achega
5f41d24da0
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/webgl_custom_attributes_lines.html

+ 1 - 1
examples/webgl_custom_attributes_lines.html

@@ -140,7 +140,7 @@
 			var buffergeometry = new THREE.BufferGeometry();
 
 			var position = new THREE.Float32BufferAttribute( vertices.length * 3, 3 ).copyVector3sArray( vertices );
-			buffergeometry.addAttribute( 'position', position )
+			buffergeometry.addAttribute( 'position', position );
 
 			var displacement = new THREE.Float32BufferAttribute( vertices.length * 3, 3 );
 			buffergeometry.addAttribute( 'displacement', displacement );