@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.
- package/CHANGELOG.md +3 -0
- package/dist/CruisePlugin/Work.d.ts +4 -0
- package/dist/CruisePlugin/typing.d.ts +7 -0
- package/dist/CruisePlugin/utils/coordinatesAngle.d.ts +19 -3
- package/dist/index.cjs.js +68 -68
- package/dist/index.js +4813 -4736
- package/dist/index.umd.js +63 -63
- package/libs/CruisePlugin/BaseController.js +8 -1
- package/libs/CruisePlugin/Work.d.ts +4 -0
- package/libs/CruisePlugin/Work.js +297 -213
- package/libs/CruisePlugin/typing.d.ts +7 -0
- package/libs/CruisePlugin/utils/coordinatesAngle.d.ts +19 -3
- package/libs/CruisePlugin/utils/coordinatesAngle.js +10 -5
- package/libs/PanoMeasurePlugin/Controller/ShortcutKeyController.js +7 -10
- package/libs/base/BasePlugin.js +1 -1
- package/libs/shared-utils/logger.js +1 -1
- package/package.json +1 -1
|
@@ -233,7 +233,14 @@ class Fe extends y {
|
|
|
233
233
|
* @description Force interupt five updateCamera
|
|
234
234
|
*/
|
|
235
235
|
forceInteruptUpdateCamera() {
|
|
236
|
-
this.five.
|
|
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
|
}
|