@openglobus/og 0.27.5 → 0.27.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,6 +14,8 @@ export declare class SimpleNavigation extends Control {
14
14
  force: Vec3;
15
15
  vel: Vec3;
16
16
  mass: number;
17
+ focusVel: number;
18
+ focusForce: number;
17
19
  protected _lookPos: Vec3 | undefined;
18
20
  protected _up: Vec3 | null;
19
21
  protected _grabbedPoint: Vec3 | undefined;
@@ -21,7 +23,6 @@ export declare class SimpleNavigation extends Control {
21
23
  protected _eye0: Vec3;
22
24
  protected _wheelDist: number;
23
25
  protected _wheelPos: Vec3;
24
- protected _wheelDelta: number;
25
26
  protected _nx: number;
26
27
  protected _ny: number;
27
28
  constructor(options?: ISimpleNavigationParams);
@@ -32,7 +33,7 @@ export declare class SimpleNavigation extends Control {
32
33
  protected _onMouseLeftButtonUp: (e: IMouseState) => void;
33
34
  protected _onMouseLeftButtonHold: (e: IMouseState) => void;
34
35
  protected _onRHold: (e: IMouseState) => void;
35
- protected _onRDown: (e: IMouseState) => void;
36
+ protected _onRDown: (e: IMouseState) => Promise<void>;
36
37
  protected _onMouseWheel: (e: IMouseState) => void;
37
38
  protected onCameraMoveForward: () => void;
38
39
  protected onCameraMoveBackward: () => void;
@@ -48,5 +49,6 @@ export declare class SimpleNavigation extends Control {
48
49
  protected onDraw(): void;
49
50
  protected get dt(): number;
50
51
  protected _updateVel(): void;
52
+ stop(): void;
51
53
  }
52
54
  export {};