Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
Sri Sham Haran 2023-03-05 21:24:19 +08:00
commit f4f544ff53
1 changed files with 5 additions and 6 deletions

View File

@ -79,6 +79,10 @@ public class GameManager : Script
scoreText.GetComponent<TextRenderable>().Text = $"{Score}";
if (timeText)
timeText.GetComponent<TextRenderable>().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<TextRenderable>().Text = $"{Score}";