Ejemplo n.º 1
0
 public void Close()
 {
     if (Rating > 0)
     {
         if (!LocalTest.Testing)
         {
             ServerHandler.PutHuntRating(_huntID, Rating, (string x) => { });
         }
     }
     _appearingWindow.Close();
 }
Ejemplo n.º 2
0
 private void Update()
 {
     _spinner.Rotate(Vector3.forward, 100 * Time.deltaTime);
     if (_close)
     {
         if (ItemImageLoader.FirstRequestSent && ItemImageLoader.AllLoaded())
         {
             _appearingWindow.Close();
             _close = false;
         }
     }
 }
Ejemplo n.º 3
0
    public void OnStartHuntComplete(string response)
    {
        if (response != "localTest")
        {
            JObject obj = JObject.Parse(response);

            if ((int)obj["code"] != 200)
            {
                return;
            }
        }

        _appearingWindow.Close();
        TabManager.Get.SwitchTab(Tab.StartedHunts);
        StartedHunt startedhunt = StartedHuntsManager.Get.AddStartedHunt(HuntInfo);
    }