@@ -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 ) ,
@@ -62,6 +63,7 @@ class DefaultInputs {
6263
6364 ButtonInput . onKeyboard ( "intake" , "KeyE" ) ,
6465 ButtonInput . onKeyboard ( "eject" , "KeyQ" ) ,
66+ ButtonInput . onKeyboard ( "unstick" , "Space" ) ,
6567
6668 AxisInput . onKeyboardSingleKey ( "joint 1" , "Digit1" , negativeModifierKeys ) ,
6769 AxisInput . onKeyboardSingleKey ( "joint 2" , "Digit2" , negativeModifierKeys ) ,
@@ -97,6 +99,7 @@ class DefaultInputs {
9799
98100 ButtonInput . onKeyboard ( "intake" , "Semicolon" ) ,
99101 ButtonInput . onKeyboard ( "eject" , "KeyL" ) ,
102+ ButtonInput . onKeyboard ( "unstick" , "KeyK" ) ,
100103
101104 AxisInput . onKeyboardSingleKey ( "joint 1" , "Slash" , negativeModifierKeys ) ,
102105 AxisInput . onKeyboardSingleKey ( "joint 2" , "Period" , negativeModifierKeys ) ,
@@ -128,6 +131,7 @@ class DefaultInputs {
128131
129132 ButtonInput . onGamepad ( "intake" , 4 ) ,
130133 ButtonInput . onGamepad ( "eject" , 5 ) ,
134+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
131135
132136 AxisInput . onGamepadButtons ( "joint 1" , 3 , 0 ) ,
133137 AxisInput . onGamepadButtons ( "joint 2" , 1 , 2 ) ,
@@ -158,6 +162,7 @@ class DefaultInputs {
158162
159163 ButtonInput . onGamepad ( "intake" , 4 ) ,
160164 ButtonInput . onGamepad ( "eject" , 5 ) ,
165+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
161166
162167 AxisInput . onGamepadButtons ( "joint 1" , 12 , 13 ) ,
163168 AxisInput . onGamepadButtons ( "joint 2" , 15 , 14 ) ,
@@ -187,6 +192,7 @@ class DefaultInputs {
187192
188193 ButtonInput . onGamepad ( "intake" , 4 ) ,
189194 ButtonInput . onGamepad ( "eject" , 5 ) ,
195+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
190196
191197 AxisInput . onGamepadButtons ( "joint 1" , 3 , 0 ) ,
192198 AxisInput . onGamepadButtons ( "joint 2" , 1 , 2 ) ,
@@ -255,6 +261,7 @@ class DefaultInputs {
255261
256262 ButtonInput . unbound ( "intake" ) ,
257263 ButtonInput . unbound ( "eject" ) ,
264+ ButtonInput . unbound ( "unstick" ) ,
258265
259266 AxisInput . unbound ( "joint 1" ) ,
260267 AxisInput . unbound ( "joint 2" ) ,
0 commit comments