mirror of
https://github.com/Steffo99/keep-everything-alive.git
synced 2024-11-22 09:24:19 +00:00
27 lines
658 B
C#
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;
|
|
}
|
|
}
|
|
}
|