feat: 중복체크 로직 수정

This commit is contained in:
aube.lee
2025-03-03 17:36:43 +09:00
parent aae787eb0d
commit f075e2b231
5 changed files with 15 additions and 12 deletions

View File

@@ -114,6 +114,9 @@ namespace TON
{
Debug.LogError("서버 오류 :: 캐릭터 닉네임 저장 실패");
}
cancelButton.interactable = true;
confirmButton.interactable = true;
}
});
});
@@ -122,7 +125,7 @@ namespace TON
private void DuplicateNickname()
{
nicknameCondition.text = "이미 사용중인 이름입니다.";
nicknameCondition.color = Color.red;
nicknameCondition.color = Color.yellow;
}
public void OnClickCancelButton()