From fb3b35e984422348dd901a9d4fa7110061346093 Mon Sep 17 00:00:00 2001 From: LeeJaeHyun Date: Thu, 12 Sep 2024 17:03:44 +0900 Subject: [PATCH] . --- Assets/02_Scripts/MonsterController.cs | 2 ++ 1 file changed, 2 insertions(+) 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: