Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
f4f544ff53
|
@ -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}";
|
||||
|
|
Loading…
Reference in New Issue