Parcourir la source

Merge branch 'v1.9.0-jm' of http://192.168.0.115:3000/bill/fuse-code into v1.9.0-jm

xzw il y a 8 mois
Parent
commit
f0d7dd9c9d
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      src/components/path/sign.vue

+ 3 - 1
src/components/path/sign.vue

@@ -58,8 +58,9 @@ const show = computed(
     toCameraDistance.value <= Math.pow(props.path.visibilityRange, 2)
 );
 watchEffect(() => {
+  console.log(props.path);
   console.error("globalVisibility", show.value);
-  path.visibility(show.value);
+  // path.visibility(show.value);
 });
 
 let currentPoints = props.path.points;
@@ -71,6 +72,7 @@ path.bus.on("changePoints", (points) => {
     position: { ...p.position },
     modelId: p.modelId,
   }));
+  console.log("updatePoints", currentPoints);
   emit("updatePoints", currentPoints);
 });
 watchEffect(() => {