浏览代码

Add missing semicolon in EditorControls

Tristan Valcke 8 年之前
父节点
当前提交
b9d8e2168c
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      examples/js/controls/EditorControls.js

+ 3 - 3
examples/js/controls/EditorControls.js

@@ -13,9 +13,9 @@ THREE.EditorControls = function ( object, domElement ) {
 
 
 	this.enabled = true;
 	this.enabled = true;
 	this.center = new THREE.Vector3();
 	this.center = new THREE.Vector3();
-	this.panSpeed = 0.001
-	this.zoomSpeed = 0.001
-	this.rotationSpeed = 0.005
+	this.panSpeed = 0.001;
+	this.zoomSpeed = 0.001;
+	this.rotationSpeed = 0.005;
 
 
 	// internals
 	// internals