14 lines
355 B
C#
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;
|
|
}
|
|
}
|
|
}
|