@@ -27,6 +27,7 @@ class DefaultInputs {
2727
2828 ButtonInput . onKeyboard ( "intake" , "KeyE" ) ,
2929 ButtonInput . onKeyboard ( "eject" , "KeyQ" ) ,
30+ ButtonInput . onKeyboard ( "unstick" , "Space" ) ,
3031
3132 AxisInput . onKeyboardSingleKey ( "joint 1" , "Digit1" , negativeModifierKeys ) ,
3233 AxisInput . onKeyboardSingleKey ( "joint 2" , "Digit2" , negativeModifierKeys ) ,
@@ -57,6 +58,7 @@ class DefaultInputs {
5758
5859 ButtonInput . onKeyboard ( "intake" , "KeyE" ) ,
5960 ButtonInput . onKeyboard ( "eject" , "KeyQ" ) ,
61+ ButtonInput . onKeyboard ( "unstick" , "Space" ) ,
6062
6163 AxisInput . onKeyboardSingleKey ( "joint 1" , "Digit1" , negativeModifierKeys ) ,
6264 AxisInput . onKeyboardSingleKey ( "joint 2" , "Digit2" , negativeModifierKeys ) ,
@@ -87,6 +89,7 @@ class DefaultInputs {
8789
8890 ButtonInput . onKeyboard ( "intake" , "Semicolon" ) ,
8991 ButtonInput . onKeyboard ( "eject" , "KeyL" ) ,
92+ ButtonInput . onKeyboard ( "unstick" , "KeyK" ) ,
9093
9194 AxisInput . onKeyboardSingleKey ( "joint 1" , "Slash" , negativeModifierKeys ) ,
9295 AxisInput . onKeyboardSingleKey ( "joint 2" , "Period" , negativeModifierKeys ) ,
@@ -113,6 +116,7 @@ class DefaultInputs {
113116
114117 ButtonInput . onGamepad ( "intake" , 4 ) ,
115118 ButtonInput . onGamepad ( "eject" , 5 ) ,
119+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
116120
117121 AxisInput . onGamepadButtons ( "joint 1" , 3 , 0 ) ,
118122 AxisInput . onGamepadButtons ( "joint 2" , 1 , 2 ) ,
@@ -137,6 +141,7 @@ class DefaultInputs {
137141
138142 ButtonInput . onGamepad ( "intake" , 4 ) ,
139143 ButtonInput . onGamepad ( "eject" , 5 ) ,
144+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
140145
141146 AxisInput . onGamepadButtons ( "joint 1" , 12 , 13 ) ,
142147 AxisInput . onGamepadButtons ( "joint 2" , 15 , 14 ) ,
@@ -158,6 +163,7 @@ class DefaultInputs {
158163
159164 ButtonInput . onGamepad ( "intake" , 4 ) ,
160165 ButtonInput . onGamepad ( "eject" , 5 ) ,
166+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
161167
162168 AxisInput . onGamepadButtons ( "joint 1" , 3 , 0 ) ,
163169 AxisInput . onGamepadButtons ( "joint 2" , 1 , 2 ) ,
@@ -231,6 +237,7 @@ class DefaultInputs {
231237
232238 ButtonInput . unbound ( "intake" ) ,
233239 ButtonInput . unbound ( "eject" ) ,
240+ ButtonInput . unbound ( "unstick" ) ,
234241 ] ,
235242 }
236243 }
0 commit comments