캐릭터 피격 사운드 제거

This commit is contained in:
Mingu Kim
2025-03-01 21:15:35 +09:00
parent 1c31056e98
commit eec08c14f1
2 changed files with 3 additions and 15 deletions

View File

@@ -43,8 +43,7 @@ namespace TON
public AudioClip _attackSound;
public AudioClip _deathSound;
public AudioClip _hitSound;
public void Start()
{
animator = GetComponent<Animator>();
@@ -262,7 +261,6 @@ namespace TON
if (damage < 10)
{
animator.SetTrigger("Hit Trigger");
SoundManager.instance.SFXPlay("Hit", _hitSound);
}
}
}