changed dash input to prevent characters constantly dashing instead of walking.

This commit is contained in:
Azra Victor 2021-06-16 12:12:47 +02:00 committed by no
parent 78014315ab
commit 1945e7bd4a

View File

@ -42,8 +42,8 @@ public class CharacterBlue {
ThrowPart[] tp = new ThrowPart[0];
ButtonIG[][] throwCMD = {{BACK,FORWARD,UP,DOWN},{BACK,FORWARD,UP,DOWN},{BACK,FORWARD,UP,DOWN}};
ButtonIG[][] fdashCMD = {{FORWARD},{FORWARD}};
ButtonIG[][] bdashCMD = {{BACK},{BACK}};
ButtonIG[][] fdashCMD = {{FORWARD},{},{FORWARD}};
ButtonIG[][] bdashCMD = {{BACK},{},{BACK}};
Throw th = new Throw(false,throwCMD,tp);
Dash fDash = new Dash(fdashCMD,fDashF);