From b8753696e529c4df836c48c2641523a2a1d60adc Mon Sep 17 00:00:00 2001 From: M1_IDMhan Date: Thu, 17 Aug 2023 12:47:02 +0900 Subject: [PATCH] hotfix GameManager.cs --- BlueWater/Assets/02.Scripts/GameManager.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/BlueWater/Assets/02.Scripts/GameManager.cs b/BlueWater/Assets/02.Scripts/GameManager.cs index af4ea1951..5c975002e 100644 --- a/BlueWater/Assets/02.Scripts/GameManager.cs +++ b/BlueWater/Assets/02.Scripts/GameManager.cs @@ -10,10 +10,7 @@ public class GameManager : Singleton { [Title("Controller")] public CameraController CameraController { get; private set; } - public UiController UiController { get; private set; } - public Player player; - public List boats = new List(10); [Range(0f, 1f)] @@ -22,8 +19,6 @@ public class GameManager : Singleton private void Init() { CameraController = FindObjectOfType(); - UiController = FindObjectOfType(); - player = FindObjectOfType(); } protected override void OnAwake()