non-exitable window fix

This commit is contained in:
Daniel Tyomin 2024-08-20 10:50:07 +02:00
parent 8447fe871c
commit a88f8cb12f
1 changed files with 3 additions and 0 deletions

View File

@ -220,6 +220,9 @@ public class UIManager: MonoBehaviour
case UIState.Pause:
Pause.SetActive(false);
break;
case UIState.StageComplete:
StageComplete.SetActive(false);
break;
}
}