From a2861247034910b13d211ad15afd847a8629361b Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sun, 18 Jul 2021 14:08:45 +0200 Subject: [PATCH] fix: switch step immediatly after the previous one Will solve potential input lag issues --- .../controllers/fighters/systems/choregraphy/step/parent.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/step/parent.lua b/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/step/parent.lua index f07de15..60f5537 100644 --- a/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/step/parent.lua +++ b/sonic-radiance.love/scenes/battlesystem/controllers/fighters/systems/choregraphy/step/parent.lua @@ -42,6 +42,7 @@ end function StepParent:finish() self.choregraphy:endStep() + self.choregraphy:switchStep() end return StepParent