2021-11-01 01:54:04 -06:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class startTrigger : MonoBehaviour
|
|
|
|
{
|
|
|
|
private tetrominoSpawnManager TetrominoSpawnManager;
|
2021-11-01 23:55:30 -06:00
|
|
|
private bool gameStarted = false;
|
2021-11-01 01:54:04 -06:00
|
|
|
|
|
|
|
// Start is called before the first frame update
|
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
TetrominoSpawnManager = FindObjectOfType<tetrominoSpawnManager>();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnTriggerEnter2D(Collider2D other)
|
|
|
|
{
|
2021-11-01 23:55:30 -06:00
|
|
|
if (other.gameObject.tag == "Player" && !gameStarted)
|
2021-11-01 01:54:04 -06:00
|
|
|
{
|
2021-11-01 23:55:30 -06:00
|
|
|
GetComponent<AudioSource>().Play();
|
2021-11-01 01:54:04 -06:00
|
|
|
TetrominoSpawnManager.spawnTetromino();
|
2021-11-01 23:55:30 -06:00
|
|
|
gameStarted = true;
|
2021-11-01 01:54:04 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|