Exemple #1
0
//	public void ScanUIScreen ()
//	{
//		//ScanUI.SetActive(true);
//		SignUpObject.SetActive(false);
//		LoginObject.SetActive(false);
//        LoadScanUIScreen ();
//	}

    public void NoInternetFound()
    {
        NoInternetLogin.SetActive(true);
        NoInternetSignUp.SetActive(true);
        //NoInternetScan.SetActive(true);
        noInternetBanner = true;
    }
Exemple #2
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);
    }
Exemple #3
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);
    }