Upgrade + Info Button on selection

This commit is contained in:
Sewmina
2022-04-09 21:28:39 +05:30
parent 0e2daa84ff
commit 32b942bda8
8 changed files with 2463 additions and 761 deletions

View File

@@ -6,10 +6,17 @@ using TMPro;
public class OtherUIbuttons : MonoBehaviour
{
public GameObject Re;
public GameObject AuthError;
public void forgotPass()
{
Re.SetActive(true);
AuthError.SetActive(false);
}
public void ErrorAuth(){
AuthError.SetActive(true);
Re.SetActive(false);
}
}