Exemplo n.º 1
0
 /// <summary>
 /// 注册数据
 /// </summary>
 void RemoveRegisterFrame()
 {
     account  = registerFrame.GetChild("account").text;
     password = registerFrame.GetChild("password").text;
     again    = registerFrame.GetChild("again").text;
     if (again == password && again != "" && password != "" && account != "")
     {
         registerRequest.DefaltRequest();
     }
     else
     {
         Transition t = registerFrame.GetTransition("t2");
         t.Play();
     }
 }