@realsee/dnalogel 3.77.2 → 3.77.3

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.
@@ -233,7 +233,14 @@ class Fe extends y {
233
233
  * @description Force interupt five updateCamera
234
234
  */
235
235
  forceInteruptUpdateCamera() {
236
- this.five.updateCamera({}, 0);
236
+ const e = this.five.getCurrentState().longitude + 5e-3;
237
+ this.five.updateCamera(
238
+ {
239
+ longitude: e
240
+ },
241
+ 0,
242
+ !0
243
+ );
237
244
  }
238
245
  getPauseData() {
239
246
  var e;
@@ -20,6 +20,8 @@ export default class WalkController extends CruiseController<PluginData, Config>
20
20
  moveToFirstPanoEffect?: MoveEffect;
21
21
  moveToFirstPanoDuration?: number;
22
22
  modeChanging?: boolean;
23
+ audio?: HTMLAudioElement;
24
+ audioCache?: Map<string, HTMLAudioElement>;
23
25
  };
24
26
  constructor(five: Five, config?: Config);
25
27
  /**
@@ -117,4 +119,6 @@ export default class WalkController extends CruiseController<PluginData, Config>
117
119
  * @description Change five mode
118
120
  */
119
121
  private changeMode;
122
+ private loadAudio;
123
+ private playAudio;
120
124
  }