feat: 드로그 보스 리네임 및 기본 패턴 구현

This commit is contained in:
2026-03-21 12:29:29 +09:00
parent 671f8d8a25
commit d5d4b2f125
62 changed files with 793 additions and 61 deletions

View File

@@ -30,7 +30,11 @@ namespace Colosseum.Skills.Effects
return;
}
if (!target.TryGetComponent(out HitReactionController hitReactionController))
HitReactionController hitReactionController = target.GetComponent<HitReactionController>();
if (hitReactionController == null)
hitReactionController = target.GetComponentInParent<HitReactionController>();
if (hitReactionController == null)
{
Debug.LogWarning($"[DownEffect] HitReactionController not found on target: {target.name}");
return;