bevy_ineffable 0.2.0

A simple-to-use input manager for bevy that empowers players and makes accessibility easy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
InputConfig(
    bindings: {
        "Action": {
            "Defend": [
                Pulse(JustPressed([Key(Q)])),
            ],
            "Attack": [
                Pulse(JustPressed([Key(W)])),
            ],
        },
    },
)