Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/Monster/Eyesight.cs
2025-02-20 16:00:33 +09:00

31 lines
684 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class Eyesight : MonoBehaviour
{
[SerializeField]
private MonsterBase _monsterBase;
// private bool _isDetect;
private GameObject skillPrefab;
private void OnTriggerEnter2D(Collider2D other)
{
if (other.CompareTag("Player"))
{
_monsterBase.IsDetect = true;
}
}
private void OnTriggerExit2D(Collider2D other)
{
if (other.CompareTag("Player"))
{
_monsterBase.IsDetect = false;
}
}
}
}