Browse Source

modified: Assets/InfraredProject/WebCamera/Script/ZIM/ScreenLocate.cs

ZIM 1 year ago
parent
commit
71ca3beb31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Assets/InfraredProject/WebCamera/Script/ZIM/ScreenLocate.cs

+ 1 - 1
Assets/InfraredProject/WebCamera/Script/ZIM/ScreenLocate.cs

@@ -716,7 +716,7 @@ public partial class ScreenLocate : MonoBehaviour
 
     static public void SaveScreenLocateVectorList()
     {
-        string saveStr = string.Join(";   ", quadUnityVectorList.Select(v => $"{(int)v.x}, {(int)v.y}")); //,{v.z}
+        string saveStr = string.Join(";", quadUnityVectorList.Select(v => $"{v.x},{v.y}")); //,{v.z}
         Debug.Log("SaveScreenLocateVectorList:  " + saveStr);
         PlayerPrefs.SetString("ScreenLocateVectorList", saveStr);
     }