From dfd68dbc3c14222a488d94101b217f3873fe0bb8 Mon Sep 17 00:00:00 2001 From: woojin211 Date: Thu, 30 May 2024 00:48:13 +0900 Subject: [PATCH] Delete_DataManger Delete_DataManger --- Assets/2Scripts/Intro/SignManager.cs | 9 +-------- Assets/2Scripts/Lobby/LobbyManager.cs | 4 ++-- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/Assets/2Scripts/Intro/SignManager.cs b/Assets/2Scripts/Intro/SignManager.cs index 9573bbe4ce..6dc1d3a915 100644 --- a/Assets/2Scripts/Intro/SignManager.cs +++ b/Assets/2Scripts/Intro/SignManager.cs @@ -6,7 +6,7 @@ public class SignManager : MonoBehaviour { - public static SignManager IT; // 싱글톤 + public static SignManager IT; [SerializeField] private string testId; // 테스트 아이디 [SerializeField] private string testPassword; // 테스트 비밀번호 @@ -129,7 +129,6 @@ private void SignIn() private void SignUp() { - // 아이디 패스워드 변수 var id = signUpId.text; var password = signUpPassword.text; @@ -139,12 +138,6 @@ private void SignUp() signUpAlertText.text = "아이디를 입력해주세요."; return; } - // 아이디가 11자리 초과일 경우 - if (id.Length > 11) - { - signUpAlertText.text = "아이디를 11자 이내로 입력해주세요."; - return; - } if (password.Trim().Equals("")) { diff --git a/Assets/2Scripts/Lobby/LobbyManager.cs b/Assets/2Scripts/Lobby/LobbyManager.cs index 0c595fdca4..3c0b1eb6ef 100644 --- a/Assets/2Scripts/Lobby/LobbyManager.cs +++ b/Assets/2Scripts/Lobby/LobbyManager.cs @@ -641,9 +641,9 @@ public void ShowResult(string data) // 개인전 "0" => new Color(0.7f, 0.7f, 0.7f, 0.8f), // 레드 - "1" => new Color(0.9f, 0.2f, 0.2f, 0.8f), + "1" => new Color(0.8f, 0.2f, 0.2f, 0.8f), // 블루 - "2" => new Color(0.2f, 0.2f, 0.9f, 0.8f), + "2" => new Color(0.2f, 0.2f, 0.8f, 0.8f), _ => Color.magenta, }; slot.GetComponent().color = c;