Procházet zdrojové kódy

Add missing semicolon in PaintViveController

Tristan Valcke před 8 roky
rodič
revize
f1db9e5f4d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      examples/js/vr/PaintViveController.js

+ 1 - 1
examples/js/vr/PaintViveController.js

@@ -52,7 +52,7 @@ THREE.PaintViveController = function ( id ) {
 	mesh.position.set( 0, 0.005, 0.0495 );
 	mesh.rotation.x = - 1.45;
 	mesh.scale.setScalar( 0.02 );
-	this.add( mesh )
+	this.add( mesh );
 
 	var geometry = new THREE.IcosahedronGeometry( 0.1, 2 );
 	var material = new THREE.MeshBasicMaterial();