示例#1
0
 /// <summary>
 /// If we don't have the anchor already, call this to download the anchor.
 /// </summary>
 public void WaitForAnchor()
 {
     DownloadingAnchor = networkTransmitter.RequestAndGetData();
     if (!DownloadingAnchor)
     {
         Invoke("WaitForAnchor", 0.5f);
     }
 }
示例#2
0
 /// <summary>
 /// If we don't have the anchor already, call this to download the anchor.
 /// </summary>
 public void WaitForAnchor()
 {
     DownloadingAnchor = true;
     networkTransmitter.RequestAndGetData();
 }