|
@@ -20,6 +20,7 @@ const lang = computed(() => config.lang);
|
|
|
|
|
|
const hotspots = computed(() => store.getters["tags/hotspots"]);
|
|
const hotspots = computed(() => store.getters["tags/hotspots"]);
|
|
const currentScene = computed(() => store.getters["scene/currentScene"]);
|
|
const currentScene = computed(() => store.getters["scene/currentScene"]);
|
|
|
|
+const vrStatus = computed(() => store.getters["functions/vrStatus"]);
|
|
const isHasNormalBGM = computed(() => store.getters["audio/isHasNormalBGM"]);
|
|
const isHasNormalBGM = computed(() => store.getters["audio/isHasNormalBGM"]);
|
|
const scenesList = computed(() => store.getters["scene/list"]);
|
|
const scenesList = computed(() => store.getters["scene/list"]);
|
|
const metadata = computed(() => store.getters["scene/metadata"]);
|
|
const metadata = computed(() => store.getters["scene/metadata"]);
|
|
@@ -211,10 +212,12 @@ useApp().then((app) => {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
if (hotspot.hotspotType == "scene") {
|
|
if (hotspot.hotspotType == "scene") {
|
|
|
|
+ console.error(scenesList.value);
|
|
store.commit(
|
|
store.commit(
|
|
"scene/setCurrentScene",
|
|
"scene/setCurrentScene",
|
|
scenesList.value.find((item) => item.id == hotspot.scene.id)
|
|
scenesList.value.find((item) => item.id == hotspot.scene.id)
|
|
);
|
|
);
|
|
|
|
+ // store.commit("scene/setCurrentScenesList", sceneList);
|
|
updateListPosi();
|
|
updateListPosi();
|
|
} else if (hotspot.hotspotType == "link") {
|
|
} else if (hotspot.hotspotType == "link") {
|
|
if (hotspot.linkOpenType == "newTab") {
|
|
if (hotspot.linkOpenType == "newTab") {
|