10/24 completed

This commit is contained in:
Sewmina
2022-11-03 14:55:22 +05:30
parent edbfdcfe6e
commit 5549ad870d
405 changed files with 60752 additions and 21151 deletions

View File

@@ -31,7 +31,7 @@ public class NewLoginManager : MonoBehaviour
}
public void Register(){
if(usernameInput.text.Length >4){
if(usernameInput.text.Length >=2){
StartCoroutine(register());
loadingPanel.SetActive(true);
}else{
@@ -102,8 +102,8 @@ public class NewLoginManager : MonoBehaviour
}
public void OnUsernameInputChanged(string newValue){
btn_login.interactable= (usernameInput.text.Length > 4);
usernameWarning.SetActive(usernameInput.text.Length<= 4);
btn_login.interactable= (usernameInput.text.Length > 2);
usernameWarning.SetActive(usernameInput.text.Length< 2);
}
void OnRegisterButton(){