Ejemplo n.º 1
0
 public void RetrySave()
 {
     if (timeStamp == -1 || !SDPlugin.IsSDKReady)
     {
         return;
     }
     else
     {
         Debug.Log("Will retry saving location map data to AR Cloud");
         if (activeCoroutine != null)
         {
             StopCoroutine(activeCoroutine);
         }
         SDPlugin.SixDegreesSDK_RetrySaveToARCloud(timeStamp);
         activeCoroutine = StartCoroutine(SaveCoroutine());
     }
 }