コード例 #1
0
 public static void OnLogin(this UILoginComponent self)
 {
     LoginHelper.Login(self.DomainScene(), "127.0.0.1:10002", self.account.GetComponent <InputField>().text);
 }
コード例 #2
0
ファイル: UILoginComponentSystem.cs プロジェクト: yldn/ET
 public static void OnLogin(this UILoginComponent self)
 {
     LoginHelper.OnLoginAsync(self.Domain, "127.0.0.1:10002", self.account.GetComponent <InputField>().text).Coroutine();
 }
コード例 #3
0
 public static void OnLogin(this UILoginComponent self)
 {
     LoginHelper.Login(self.DomainScene(), "127.0.0.1:10002", (self.account.GetComponent(typeof(InputField)) as InputField).text).Coroutine();
 }