Browse Source

Remove extra semicolon in webl_tonemapping

Tristan Valcke 8 năm trước cách đây
mục cha
commit
a40964740d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      examples/webgl_tonemapping.html

+ 1 - 1
examples/webgl_tonemapping.html

@@ -132,7 +132,7 @@
 				group = new THREE.Group();
 				scene.add( group );
 
-				var geometry = new THREE.TorusKnotGeometry( 18, 8, 150, 20 );;
+				var geometry = new THREE.TorusKnotGeometry( 18, 8, 150, 20 );
 				var mesh = new THREE.Mesh( geometry, standardMaterial );
 				mesh.castShadow = true;
 				mesh.receiveShadow = true;