HP, MP, Skill HUD 변경

및 스킬 애니메이션 초기화 로직 강화
This commit is contained in:
2026-03-10 17:29:33 +09:00
parent 14cf8fe187
commit 2ac491683f
9 changed files with 5495 additions and 79 deletions

View File

@@ -154,7 +154,8 @@ namespace Colosseum.Skills
overrideController[baseSkillClip] = clip;
animator.runtimeAnimatorController = overrideController;
// 같은 상태라도 처음부터 재생되도록 강제 리셋
// 애니메이터 완전 리셋 후 재생
animator.Rebind();
animator.Update(0f);
animator.Play(SKILL_STATE_NAME, 0, 0f);
}
@@ -174,7 +175,8 @@ namespace Colosseum.Skills
overrideController[baseSkillClip] = clip;
animator.runtimeAnimatorController = overrideController;
// 같은 상태라도 처음부터 재생되도록 강제 리셋
// 애니메이터 완전 리셋 후 재생
animator.Rebind();
animator.Update(0f);
animator.Play(SKILL_STATE_NAME, 0, 0f);
}