Jelajahi Sumber

missing semicolon

Cedric Guillemet 4 tahun lalu
induk
melakukan
391a1544aa
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/Gizmos/planeRotationGizmo.ts

+ 1 - 1
src/Gizmos/planeRotationGizmo.ts

@@ -161,7 +161,7 @@ export class PlaneRotationGizmo extends Gizmo {
                 this._rotationDisplayPlane.setEnabled(true);
 
                 this._rotationDisplayPlane.getWorldMatrix().invertToRef(rotationMatrix);
-                Vector3.TransformCoordinatesToRef(e.dragPlanePoint, rotationMatrix, lastDragPosition)
+                Vector3.TransformCoordinatesToRef(e.dragPlanePoint, rotationMatrix, lastDragPosition);
 
                 this._angles.x = Math.atan2(lastDragPosition.y, lastDragPosition.x) + Math.PI;
                 this._angles.y = 0;