Beispiel #1
0
    public void InternetFound()
    {
        NoInternetLogin.SetActive(false);
        NoInternetSignUp.SetActive(false);
        //NoInternetScan.SetActive(false);
        noInternetBanner = false;

        InternetFoundLogin.SetActive(true);
        InternetFoundSignUp.SetActive(true);
        //InternetFoundScan.SetActive(true);
        Invoke("ShowInternetFoundDone", 2);
    }
Beispiel #2
0
    public void LogINScreen()
    {
        LoginObject.SetActive(true);
        SignUpObject.SetActive(false);
        //ScanUI.SetActive(false);
        SignInErrorText.text = "";

        NoInternetLogin.SetActive(false);
        NoInternetSignUp.SetActive(false);
        //NoInternetScan.SetActive(false);

        InternetFoundLogin.SetActive(false);
        InternetFoundSignUp.SetActive(false);
        //InternetFoundScan.SetActive(false);
    }
Beispiel #3
0
 public void ShowInternetFoundDone()
 {
     InternetFoundLogin.SetActive(false);
     InternetFoundSignUp.SetActive(false);
     //InternetFoundScan.SetActive(false);
 }