Changed mouse_move to use forward mouse button by default

This commit is contained in:
Anuken 2020-07-19 13:04:26 -04:00
parent 9521af7be5
commit c398b89284

View file

@ -8,7 +8,7 @@ import arc.input.*;
public enum Binding implements KeyBind{
move_x(new Axis(KeyCode.a, KeyCode.d), "general"),
move_y(new Axis(KeyCode.s, KeyCode.w)),
mouse_move(KeyCode.mouseBack),
mouse_move(KeyCode.mouseForward),
boost(KeyCode.shiftLeft),
control(KeyCode.controlLeft),