Skip to content

Commit

Permalink
Delete_DataManger
Browse files Browse the repository at this point in the history
Delete_DataManger
  • Loading branch information
woojin211 committed May 29, 2024
1 parent 513b4dc commit dfd68db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
9 changes: 1 addition & 8 deletions Assets/2Scripts/Intro/SignManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class SignManager : MonoBehaviour
{
public static SignManager IT; // 싱글톤
public static SignManager IT;

[SerializeField] private string testId; // 테스트 아이디
[SerializeField] private string testPassword; // 테스트 비밀번호
Expand Down Expand Up @@ -129,7 +129,6 @@ private void SignIn()

private void SignUp()
{
// 아이디 패스워드 변수
var id = signUpId.text;
var password = signUpPassword.text;

Expand All @@ -139,12 +138,6 @@ private void SignUp()
signUpAlertText.text = "아이디를 입력해주세요.";
return;
}
// 아이디가 11자리 초과일 경우
if (id.Length > 11)
{
signUpAlertText.text = "아이디를 11자 이내로 입력해주세요.";
return;
}

if (password.Trim().Equals(""))
{
Expand Down
4 changes: 2 additions & 2 deletions Assets/2Scripts/Lobby/LobbyManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Image>().color = c;
Expand Down

0 comments on commit dfd68db

Please sign in to comment.