From 47c3a3275c5eb110c10933bc3dceb5eb3b89eb72 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 23 May 2018 17:39:17 +0200 Subject: Added basic jumping and background moving --- Assets/Scripts/GameControl.cs | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Assets/Scripts/GameControl.cs (limited to 'Assets/Scripts/GameControl.cs') diff --git a/Assets/Scripts/GameControl.cs b/Assets/Scripts/GameControl.cs new file mode 100644 index 0000000..afd79b7 --- /dev/null +++ b/Assets/Scripts/GameControl.cs @@ -0,0 +1,39 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.SceneManagement; + +public class GameControl : MonoBehaviour { + + public static GameControl instance; + public GameObject gameOverText; + public bool gameOver = false; + public float scrollSpeed = -1.5f; + + // Use this for initialization + void Awake () + { + if (instance == null) + { + instance = this; + } else if (instance != this) + { + Destroy(gameObject); + } + } + + // Update is called once per frame + void Update () + { + if (gameOver == true && Input.GetMouseButtonDown(0)) // True and Leftclick + { + SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex); // Reload currently active scene + } + } + + public void BirdDied() + { + gameOverText.SetActive(true); + gameOver = true; + } +} -- cgit v1.2.3