// 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; }
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); }
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); }