Train-of-Thought/Assets/Scripts/TriggerBoss.cs
Gerard Gascón 862afc9b7a init
2025-04-24 16:56:52 +02:00

14 lines
355 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TriggerBoss : MonoBehaviour
{
private void OnTriggerEnter2D(Collider2D collision)
{
if (collision.transform.tag == "Player")
{
GameObject.FindGameObjectWithTag("Boss").GetComponent<Boss>().enabled = true;
}
}
}