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
13
14
15
16
17
18
InputConfig(
    bindings: {
        "CheatCodes": {
            "Password": [
                Pulse(Sequence(1000, [
                    [Key(P)], [Key(A)], [Key(S)], [Key(S)], [Key(W)], [Key(O)], [Key(R)], [Key(D)],
                ])),
            ],
            "KonamiCode": [
                Pulse(Sequence(1000, [
                    [Key(Up)], [Key(Up)], [Key(Down)], [Key(Down)],
                    [Key(Left)], [Key(Right)], [Key(Left)], [Key(Right)],
                    [Key(B)], [Key(A)],
                ])),
            ],
        },
    },
)