1
0
forked from Clones/Controlify

✏️ Improve radial menu first launch

This commit is contained in:
isXander
2023-08-19 19:59:04 +01:00
parent b38f392bd7
commit fa656304c0
2 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,9 @@ public class GamepadController extends AbstractController<GamepadState, GamepadC
} }
this.bindings = new ControllerBindings<>(this); this.bindings = new ControllerBindings<>(this);
this.config.validateRadialActions(bindings);
this.defaultConfig.validateRadialActions(bindings);
} }
@Override @Override

View File

@ -36,6 +36,9 @@ public class SingleJoystickController extends AbstractController<JoystickState,
this.rumbleManager = new RumbleManager(this); this.rumbleManager = new RumbleManager(this);
this.bindings = new ControllerBindings<>(this); this.bindings = new ControllerBindings<>(this);
this.config.validateRadialActions(bindings);
this.defaultConfig.validateRadialActions(bindings);
} }
@Override @Override