1
0
Fork 0
Bildschirmflausch-LD41/Assets/Scripts/UIController.cs
2018-04-22 00:23:45 +02:00

57 lines
1.3 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIController : MonoBehaviour {
private GameObject score;
private GameObject pauseMenu;
[SerializeField]
private GameObject gameOverPanel;
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
public static UIController instance;
public void ShowPauseMenu()
{
pauseMenu.SetActive(true);
}
public void ClosePauseMenu()
{
pauseMenu.SetActive(false);
}
public void LoadSceneByIndex(int index)
{
Debug.Log("Loaded scene " + index);
UnityEngine.SceneManagement.SceneManager.LoadScene(index);
}
public void QuitGame()
{
Debug.Log("Quit game");
Application.Quit();
}
public void ShowGameOverUI() {
if (gameOverPanel != null) {
Canvas gameOverCanvas = gameOverPanel.GetComponent<Canvas>();
Debug.Log("Loading Canvas");
if (gameOverCanvas != null) {
Debug.Log("Loaded Canvas");
gameOverCanvas.enabled = true;
} else {
Debug.Log("Gameover panel has no Canvas");
}
} else {
Debug.Log("No game over panel assigned");
}
}
}