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/ScrollingObject.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Assets/Scripts/ScrollingObject.cs (limited to 'Assets/Scripts/ScrollingObject.cs') diff --git a/Assets/Scripts/ScrollingObject.cs b/Assets/Scripts/ScrollingObject.cs new file mode 100644 index 0000000..e2b51e5 --- /dev/null +++ b/Assets/Scripts/ScrollingObject.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ScrollingObject : MonoBehaviour { + + private Rigidbody2D rb2d; + + // Use this for initialization + void Start () + { + rb2d = GetComponent(); + rb2d.velocity = new Vector2(GameControl.instance.scrollSpeed, 0); + } + + // Update is called once per frame + void Update () { + if (GameControl.instance.gameOver == true) + { + rb2d.velocity = Vector2.zero; + } + } +} -- cgit v1.2.3