diff --git a/Assets/Scripts/Gameplay/SC_GameManager.cs b/Assets/Scripts/Gameplay/SC_GameManager.cs index e654bd99..5dd743d1 100644 --- a/Assets/Scripts/Gameplay/SC_GameManager.cs +++ b/Assets/Scripts/Gameplay/SC_GameManager.cs @@ -79,6 +79,10 @@ public class GameManager : Script scoreText.GetComponent().Text = $"{Score}"; if (timeText) timeText.GetComponent().Text = $"{timer.ToString("0")}"; + + Input.SetMouseCentering(true); + Application.IsCursorVisible = false; + Application.FixDeltaTime = Time.DefaultFixDeltaTime; } protected override void start() @@ -93,7 +97,6 @@ public class GameManager : Script if (SceneFadeInOut.Instance != null) SceneFadeInOut.Instance.CallFadeOut(); - Application.IsCursorVisible = false; GamePause = false; } @@ -102,15 +105,11 @@ public class GameManager : Script { if (GamePause || !stealFoodPopUpDone) { - Input.SetMouseCentering(false); - Application.IsCursorVisible = true; return; } if (currGameState == GameState.START) - { - Input.SetMouseCentering(true); - + { timer -= Time.DeltaTimeF; if(scoreText) scoreText.GetComponent().Text = $"{Score}";