@@ -26,6 +26,7 @@ class DefaultInputs {
2626
2727 ButtonInput . onKeyboard ( "intake" , "KeyE" ) ,
2828 ButtonInput . onKeyboard ( "eject" , "KeyQ" ) ,
29+ ButtonInput . onKeyboard ( "unstick" , "Space" ) ,
2930
3031 AxisInput . onKeyboardSingleKey ( "joint 1" , "Digit1" , negativeModifierKeys ) ,
3132 AxisInput . onKeyboardSingleKey ( "joint 2" , "Digit2" , negativeModifierKeys ) ,
@@ -61,6 +62,7 @@ class DefaultInputs {
6162
6263 ButtonInput . onKeyboard ( "intake" , "KeyE" ) ,
6364 ButtonInput . onKeyboard ( "eject" , "KeyQ" ) ,
65+ ButtonInput . onKeyboard ( "unstick" , "Space" ) ,
6466
6567 AxisInput . onKeyboardSingleKey ( "joint 1" , "Digit1" , negativeModifierKeys ) ,
6668 AxisInput . onKeyboardSingleKey ( "joint 2" , "Digit2" , negativeModifierKeys ) ,
@@ -96,6 +98,7 @@ class DefaultInputs {
9698
9799 ButtonInput . onKeyboard ( "intake" , "Semicolon" ) ,
98100 ButtonInput . onKeyboard ( "eject" , "KeyL" ) ,
101+ ButtonInput . onKeyboard ( "unstick" , "KeyK" ) ,
99102
100103 AxisInput . onKeyboardSingleKey ( "joint 1" , "Slash" , negativeModifierKeys ) ,
101104 AxisInput . onKeyboardSingleKey ( "joint 2" , "Period" , negativeModifierKeys ) ,
@@ -127,6 +130,7 @@ class DefaultInputs {
127130
128131 ButtonInput . onGamepad ( "intake" , 4 ) ,
129132 ButtonInput . onGamepad ( "eject" , 5 ) ,
133+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
130134
131135 AxisInput . onGamepadButtons ( "joint 1" , 3 , 0 ) ,
132136 AxisInput . onGamepadButtons ( "joint 2" , 1 , 2 ) ,
@@ -157,6 +161,7 @@ class DefaultInputs {
157161
158162 ButtonInput . onGamepad ( "intake" , 4 ) ,
159163 ButtonInput . onGamepad ( "eject" , 5 ) ,
164+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
160165
161166 AxisInput . onGamepadButtons ( "joint 1" , 12 , 13 ) ,
162167 AxisInput . onGamepadButtons ( "joint 2" , 15 , 14 ) ,
@@ -186,6 +191,7 @@ class DefaultInputs {
186191
187192 ButtonInput . onGamepad ( "intake" , 4 ) ,
188193 ButtonInput . onGamepad ( "eject" , 5 ) ,
194+ ButtonInput . onGamepad ( "unstick" , 6 ) ,
189195
190196 AxisInput . onGamepadButtons ( "joint 1" , 3 , 0 ) ,
191197 AxisInput . onGamepadButtons ( "joint 2" , 1 , 2 ) ,
@@ -254,6 +260,7 @@ class DefaultInputs {
254260
255261 ButtonInput . unbound ( "intake" ) ,
256262 ButtonInput . unbound ( "eject" ) ,
263+ ButtonInput . unbound ( "unstick" ) ,
257264
258265 AxisInput . unbound ( "joint 1" ) ,
259266 AxisInput . unbound ( "joint 2" ) ,
0 commit comments