1
Fork 0
mirror of https://github.com/Steffo99/keep-everything-alive.git synced 2024-11-22 09:24:19 +00:00
keep-everything-alive/Assets/Scripts/Microgame_YourShip/FailOnCollision.cs
2020-04-19 17:55:44 +02:00

27 lines
658 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FailOnCollision : MonoBehaviour
{
public float activationDelay = 0.5f;
private MicrogameController microgameController;
private bool active;
void Awake()
{
microgameController = GameObject.FindGameObjectWithTag("MicrogameController").GetComponent<MicrogameController>();
Invoke("Activate", activationDelay);
}
void Activate() {
active = true;
}
void OnTriggerStay2D(Collider2D other) {
if(other.tag == "Enemy" && active) {
microgameController.victory = false;
}
}
}