씬 전환을 위한 씬매니저 추가 및 씬 전환 기능 추가

This commit is contained in:
2026-01-28 03:23:42 +09:00
parent 3ddecbf75f
commit 7f17e25137
18 changed files with 617 additions and 84 deletions

View File

@@ -7,9 +7,11 @@ public class Managers : MonoBehaviour
InputManager _input = new InputManager();
ResourceManager _resource = new ResourceManager();
SceneManagerEx _scene = new SceneManagerEx();
UIManager _ui = new UIManager();
public static InputManager Input { get { return Instance._input; } }
public static ResourceManager Resource { get { return Instance._resource; } }
public static SceneManagerEx Scene { get { return Instance._scene; } }
public static UIManager UI { get { return Instance._ui; } }
// Start is called once before the first execution of Update after the MonoBehaviour is created