|
|
@@ -16,7 +16,15 @@
|
|
|
<PathEdit v-if="current === 'path'" ref="quiskObj" />
|
|
|
</RightFillPano>
|
|
|
<Teleport to=".laser-layer">
|
|
|
- <div class="quisks" v-if="!isEdit && !currentIsFullView && !custom.full">
|
|
|
+ <div
|
|
|
+ class="quisks"
|
|
|
+ v-if="
|
|
|
+ !isEdit &&
|
|
|
+ !currentIsFullView &&
|
|
|
+ !custom.full &&
|
|
|
+ isScenePlayRun === ScenePlayIngEnum.stop
|
|
|
+ "
|
|
|
+ >
|
|
|
<div class="quisk-item fun-ctrl" @click="quiskAdd('guide')">
|
|
|
<ui-icon type="a-guide_s" />
|
|
|
<span>{{ $t("guide.guide.name") }}</span>
|
|
|
@@ -41,7 +49,7 @@ import { nextTick, reactive, ref, watchEffect } from "vue";
|
|
|
import { guides, isEdit, paths } from "@/store";
|
|
|
import { ui18n } from "@/lang";
|
|
|
import router from "@/router";
|
|
|
-import { currentIsFullView } from "@/utils/full";
|
|
|
+import { currentIsFullView, isScenePlayRun, ScenePlayIngEnum } from "@/utils/full";
|
|
|
import { custom } from "@/env";
|
|
|
|
|
|
const current = ref("path");
|