We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d25b681 commit 012f766Copy full SHA for 012f766
fission/src/systems/input/InputTypes.ts
@@ -1,7 +1,15 @@
1
import type { DriveType } from "../simulation/behavior/Behavior"
2
import type Input from "./inputs/Input"
3
4
-export type InputName = "arcadeDrive" | "arcadeTurn" | "tankLeft" | "tankRight" | "intake" | "eject" | `joint ${number}`
+export type InputName =
5
+ | "arcadeDrive"
6
+ | "arcadeTurn"
7
+ | "tankLeft"
8
+ | "tankRight"
9
+ | "intake"
10
+ | "eject"
11
+ | "unstick"
12
+ | `joint ${number}`
13
14
export type ModifierState = Readonly<{
15
alt: boolean
0 commit comments