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().enabled = true; } } }