diff --git a/Assets/Scenes/Main.unity b/Assets/Scenes/Main.unity index bb7d8c7..7ac642b 100644 --- a/Assets/Scenes/Main.unity +++ b/Assets/Scenes/Main.unity @@ -14227,6 +14227,10 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 1302667470} m_Modifications: + - target: {fileID: 1874040215986903263, guid: d594a9afcbadc3646be0b679de9ca105, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1991443053129587207, guid: d594a9afcbadc3646be0b679de9ca105, type: 3} propertyPath: m_IsActive value: 0 diff --git a/Assets/Scripts/Game Schedule/Scoreboard.cs b/Assets/Scripts/Game Schedule/Scoreboard.cs index 22a2259..f70c2b6 100644 --- a/Assets/Scripts/Game Schedule/Scoreboard.cs +++ b/Assets/Scripts/Game Schedule/Scoreboard.cs @@ -35,6 +35,11 @@ public class Scoreboard: MonoBehaviour { Instance = this; } + + foreach (var stageProp in FindObjectsOfType(true)) + { + stageProp.gameObject.SetActive(false); + } } public void StartStage(StagingManager.StageEnum stage)