@idetik/core 0.9.1 → 0.10.1

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.
package/dist/index.d.ts CHANGED
@@ -481,6 +481,7 @@ declare class OrthographicCamera extends Camera {
481
481
  }
482
482
 
483
483
  interface CameraControls {
484
+ readonly isMoving: boolean;
484
485
  onUpdate(dt: number): void;
485
486
  onEvent(event: EventContext): void;
486
487
  }
@@ -489,6 +490,7 @@ declare class PanZoomControls implements CameraControls {
489
490
  private dragActive_;
490
491
  private dragStart_;
491
492
  constructor(camera: OrthographicCamera);
493
+ get isMoving(): boolean;
492
494
  onEvent(event: EventContext): void;
493
495
  onUpdate(_delta: number): void;
494
496
  private onWheel;
@@ -874,6 +876,7 @@ declare class VolumeLayer extends Layer {
874
876
  private sourcePolicy_;
875
877
  private chunkStoreView_?;
876
878
  private lastLoadedTime_;
879
+ private interactiveStepSizeScale_;
877
880
  private debugShowWireframes_;
878
881
  debugShowDegenerateRays: boolean;
879
882
  color: vec3;