xushiting 2 yıl önce
ebeveyn
işleme
8def9a8de0

Dosya farkı çok büyük olduğundan ihmal edildi
+ 1 - 1
server/test/a0k4xu045_202305311600080410/attach/sceneStore


+ 2 - 2
src/graphic/Load.js

@@ -205,8 +205,8 @@ export default class Load {
 
   getXY(width, height, position) {
     const point = {};
-    point.x = position.x - width / 2;
-    point.y = height / 2 - position.y;
+    point.x = (position.x - width / 2) * coordinate.ratio;
+    point.y = (height / 2 - position.y) * coordinate.ratio;
     return point;
   }