diff --git a/Assets/02_Scripts/MonsterController.cs b/Assets/02_Scripts/MonsterController.cs index ec2c073..27eb556 100644 --- a/Assets/02_Scripts/MonsterController.cs +++ b/Assets/02_Scripts/MonsterController.cs @@ -65,12 +65,14 @@ public class MonsterController : MonoBehaviour { case State.IDLE: agent.isStopped = true; + animator.SetBool("IsTrace", false); break; case State.TRACE: // 좔적 μ‹œμž‘ agent.SetDestination(playerTr.position); agent.isStopped = false; + animator.SetBool("IsTrace", true); break; case State.ATTACK: