void FixedUpdate()
 {
     if (!isNetworking)
     {
         this.enabled = false;
     }
     if (timeout.CheckTimeout(CurrentProgress))
     {
         if (OnError != null)
         {
             OnError("timeout");
         }
         this.Dispose();
     }
 }