feat: 드로그 보스 리네임 및 기본 패턴 구현
- TestBoss 관련 프리팹, 데이터, 애니메이션, BT 자산을 Drog 명칭으로 정리 - 드로그 전용 패턴 컨트롤러와 기본 패턴 루프를 추가 - 오른손치기2 기반 내려찍기와 다운 추가타 연계 진입점을 구현 - 점프, 스윙, 다운 추가타 관련 스킬 및 이펙트 데이터를 정리
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user