feat: 랭킹 정보 업데이트 및 화면 매핑 로직 추가

This commit is contained in:
aube.lee
2025-02-28 01:15:25 +09:00
parent 7e89fb0959
commit a0238ddc61
7 changed files with 37 additions and 7 deletions

View File

@@ -20,8 +20,6 @@ namespace TON
}
PlayerDataManager.Singleton.SetCurrentUserData();
StageManager.Singleton.Initialize();
SkillDataManager.Singleton.Initalize();

View File

@@ -1,3 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
@@ -51,6 +52,7 @@ namespace TON
yield break;
}
SkillDataManager.Singleton.Initalize();
// StageManager.Singleton.StartStage(stageId);
StageManager.Singleton.StartStage();
@@ -67,7 +69,7 @@ namespace TON
UIManager.Hide<OptionUI>(UIList.OptionUI);
UIManager.Hide<ControllerUI>(UIList.ControllerUI);
UIManager.Hide<GameoverUI>(UIList.GameOverUI);
// UIManager.Hide<GameoverUI>(UIList.GameOverUI);
UIManager.Hide<GameWinUI>(UIList.GameWinUI);
UIManager.Hide<PauseUI>(UIList.PauseUI);