three-stdlib 2.31.0 → 2.32.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- import { Scene, PerspectiveCamera, OrthographicCamera, EventDispatcher } from 'three';
1
+ import { Vector3, Scene, PerspectiveCamera, OrthographicCamera, EventDispatcher } from 'three';
2
2
  type Camera = OrthographicCamera | PerspectiveCamera;
3
3
  /**
4
4
  *
@@ -91,7 +91,7 @@ declare class ArcballControls extends EventDispatcher {
91
91
  maxDistance: number;
92
92
  minZoom: number;
93
93
  maxZoom: number;
94
- private target;
94
+ readonly target: Vector3;
95
95
  private _currentTarget;
96
96
  private _tbRadius;
97
97
  private _state;