bevy_keybind 1.0.0

Common event interface for bevy_input, so that we can better separate logic from configuration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Action keys are KeyCodes.
actions:
  W: MoveForward
  A: MoveLeft
  S: MoveBack
  D: MoveRight
  C: Crouch
  Mouse1: Fire
  Mouse2: Zoom
  Mouse3: PushToTalk

# Axis keys are MouseX or MouseY.
axes:
  MouseX: LookRight
  MouseY: LookDown

# When this file is read by the KeyBindPlugin, the values are read as `String`.