using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using TMPro; public class UiController : MonoBehaviour { public GameObject player = null; private float startPosition; public TextMeshProUGUI uiDistance; public TextMeshProUGUI uiHighScore; public static float distance = 0; public static int highScore = 0; private float oldDistance = 0.0f; // Start is called before the first frame update void Start() { startPosition = this.player.transform.position.z; Cursor.lockState = CursorLockMode.None; Cursor.visible = true; UiController.LoadGame(); } public static void SaveGame() { PlayerPrefs.SetInt("HighestScore", (int)UiController.distance); PlayerPrefs.Save(); Debug.Log("Game data saved!"); } static void LoadGame() { if (PlayerPrefs.HasKey("HighestScore")) { UiController.highScore = PlayerPrefs.GetInt("HighestScore"); Debug.Log(UiController.highScore); } else { UiController.highScore = 0; } } // Update is called once per frame void Update() { UiController.distance = this.player.transform.position.z - startPosition; if (oldDistance < distance) { uiDistance.text = "Distance : " + distance.ToString("0"); uiHighScore.text = "HighScore : " + UiController.highScore.ToString("0"); oldDistance = distance; } } //MENU public void exitGame() { Application.Quit(); } }