Nears now #16

Merged
local merged 2 commits from feat/local/hitfx into master 2022-04-27 02:47:16 +02:00
1 changed files with 5 additions and 1 deletions
Showing only changes of commit 265c8fcf8f - Show all commits

View File

@ -107,7 +107,11 @@ end
function button_hit(button, rating, delta)
if (showHitAnims) then
HitFX.TriggerAnimation("Crit", button + 1)
if (rating == 1) then
HitFX.TriggerAnimation("Near", button + 1)
else
HitFX.TriggerAnimation("Crit", button + 1)
end
end
end