We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 820e237 commit 154c1afCopy full SHA for 154c1af
TeamCode2028/src/main/java/com/technodot/ftc/twentyfive/common/Controls.java
@@ -36,7 +36,7 @@ public static boolean drivePrecise(Gamepad gamepad) {
36
37
public static boolean driveAim(Gamepad gamepad) {
38
// return gamepad != null && gamepad.x;
39
- return gamepad != null && (gamepad.a || gamepad.y); // aim will activate at same time as extake shoot
+ return gamepad != null && (gamepad.x || gamepad.a || gamepad.y); // aim will activate at same time as extake shoot
40
}
41
42
public static boolean intakeIn(Gamepad gamepad) {
0 commit comments