SetConnected() private méthode

private SetConnected ( bool connected ) : void
connected bool
Résultat void
Exemple #1
0
 public void Result(string data)
 {
     if (tracker.debug)
     {
         Debug.Log("Start local storage successfull");
     }
     tracker.SetConnected(true);
 }
Exemple #2
0
 public void Result(string data)
 {
     if (tracker.debug)
     {
         Debug.Log("Start successfull");
     }
     try {
         JSONNode dict = JSONNode.Parse(data);
         this.ProcessData(dict);
     } catch (Exception e) {
         Debug.LogError(e);
     }
     tracker.SetConnected(true);
 }