Sfoglia il codice sorgente

Add missing semicolon in FlyControls

Tristan Valcke 8 anni fa
parent
commit
9fbfbf75ed
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      examples/js/controls/FlyControls.js

+ 1 - 1
examples/js/controls/FlyControls.js

@@ -270,7 +270,7 @@ THREE.FlyControls = function ( object, domElement ) {
 		window.removeEventListener( 'keydown', _keydown, false );
 		window.removeEventListener( 'keyup', _keyup, false );
 
-	}
+	};
 
 	var _mousemove = bind( this, this.mousemove );
 	var _mousedown = bind( this, this.mousedown );