Add Game Over screen and count down clock for game time

This commit is contained in:
BuyMyMojo 2023-03-03 09:51:19 +11:00
parent 15abaa80fa
commit 0c71d06fb8
10 changed files with 934 additions and 9 deletions

View file

@ -34,7 +34,7 @@ public class Player : MonoBehaviour, IKitchenObjectParent
private void GameInput_OnInteractAlteranteAction(object sender, EventArgs e)
{
if (GameStateManager.Instace.IsGamePlaying()) return;
if (!GameStateManager.Instace.IsGamePlaying()) return;
if (selectedCounter != null)
{
@ -45,7 +45,7 @@ public class Player : MonoBehaviour, IKitchenObjectParent
private void GameInput_OnInteractAction(object sender, System.EventArgs e)
{
if (GameStateManager.Instace.IsGamePlaying()) return;
if (!GameStateManager.Instace.IsGamePlaying()) return;
if (selectedCounter != null)
{