From 36893bdbc54c0923173907007624f8af95495e9a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 23 May 2018 18:13:38 +0200 Subject: Finished column pool --- Assets/Scripts/ColumnPool.cs | 47 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 Assets/Scripts/ColumnPool.cs (limited to 'Assets/Scripts/ColumnPool.cs') diff --git a/Assets/Scripts/ColumnPool.cs b/Assets/Scripts/ColumnPool.cs new file mode 100644 index 0000000..34d10b8 --- /dev/null +++ b/Assets/Scripts/ColumnPool.cs @@ -0,0 +1,47 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class ColumnPool : MonoBehaviour { + + public int columnPoolSize = 5; + public GameObject columnPrefab; + public float spawnRate = 4f; + public float columnMin = -1f; + public float columnMax = 3.5f; + + private GameObject[] columns; + private Vector2 objectPoolPosition = new Vector2(-15f, 25f); + private float timeSinceLastSpawned; + private float spawnXPosition = 10f; + private int currentColumn = 0; + + + // Use this for initialization + void Start () + { + columns = new GameObject[columnPoolSize]; + for (int i = 0; i < columnPoolSize; i++) + { + columns[i] = (GameObject)Instantiate(columnPrefab, objectPoolPosition, Quaternion.identity); + } + } + + // Update is called once per frame + void Update () + { + timeSinceLastSpawned += Time.deltaTime; + + if (GameControl.instance.gameOver == false && timeSinceLastSpawned >= spawnRate) + { + timeSinceLastSpawned = 0; + float spawnYPosition = Random.Range(columnMin, columnMax); + columns[currentColumn].transform.position = new Vector2(spawnXPosition, spawnYPosition); + currentColumn++; + if (currentColumn >= columnPoolSize) + { + currentColumn = 0; + } + } + } +} -- cgit v1.2.3