bill 1 hónapja
szülő
commit
1fb7632643
2 módosított fájl, 2 hozzáadás és 1 törlés
  1. 1 1
      src/graphic/Renderer/Draw.js
  2. 1 0
      src/store/sync.ts

+ 1 - 1
src/graphic/Renderer/Draw.js

@@ -1511,7 +1511,7 @@ export default class Draw {
           ...vector.controlAnglePoint,
           fillColor: "#fff",
           color: style.strokeStyle,
-          radius: 5,
+          radius: 20,
         });
     }
   }

+ 1 - 0
src/store/sync.ts

@@ -155,6 +155,7 @@ export const api = !global.android
       reshoot(pos: Pos3D) {
         return new Promise((resolve) => {
           global.reshootCallback = (data) => {
+            data.position = JSON.parse(data.position);
             delete global.reshootCallback;
             resolve(data);
           };