Cedric Guillemet преди 5 години
родител
ревизия
f52b00ce0f
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/Gizmos/scaleGizmo.ts

+ 2 - 2
src/Gizmos/scaleGizmo.ts

@@ -145,7 +145,7 @@ export class ScaleGizmo extends Gizmo {
     /**
      * Ratio for the scale of the gizmo (Default: 1)
      */
-    public set sensibility(value: number) {
+    public set sensitivity(value: number) {
         this._sensitivity = value;
         [this.xGizmo, this.yGizmo, this.zGizmo, this.uniformScaleGizmo].forEach((gizmo) => {
             if (gizmo) {
@@ -153,7 +153,7 @@ export class ScaleGizmo extends Gizmo {
             }
         });
     }
-    public get sensibility() {
+    public get sensitivity() {
         return this._sensitivity;
     }