Add Game Over screen and count down clock for game time
This commit is contained in:
parent
15abaa80fa
commit
0c71d06fb8
10 changed files with 934 additions and 9 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Reference in a new issue