@@ -128,14 +128,14 @@ public boolean getRawRightButton() {
128
128
return false ;
129
129
}
130
130
131
- // Start / Select / Option //
132
- /** @return If the select button is pressed */
133
- public boolean getRawSelectButton () {
131
+ // Left Menu / Right Menu //
132
+ /** @return If the left menu button is pressed */
133
+ public boolean getRawLeftMenuButton () {
134
134
return false ;
135
135
}
136
136
137
- /** @return If the start button is pressed */
138
- public boolean getRawStartButton () {
137
+ /** @return If the right menu button is pressed */
138
+ public boolean getRawRightMenuButton () {
139
139
return false ;
140
140
}
141
141
@@ -334,15 +334,15 @@ public final Trigger getRightButton() {
334
334
return new Trigger (this ::getRawRightButton );
335
335
}
336
336
337
- // Select / Start / Option //
338
- /** @return Trigger that activates with {@link #getRawSelectButton ()} */
339
- public final Trigger getSelectButton () {
340
- return new Trigger (this ::getRawSelectButton );
337
+ // Left Menu / Right Menu //
338
+ /** @return Trigger that activates with {@link #getRawLeftMenuButton ()} */
339
+ public final Trigger getLeftMenuButton () {
340
+ return new Trigger (this ::getRawLeftMenuButton );
341
341
}
342
342
343
- /** @return Trigger that activates with {@link #getRawStartButton ()} */
344
- public final Trigger getStartButton () {
345
- return new Trigger (this ::getRawStartButton );
343
+ /** @return Trigger that activates with {@link #getRawRightMenuButton ()} */
344
+ public final Trigger getRightMenuButton () {
345
+ return new Trigger (this ::getRawRightMenuButton );
346
346
}
347
347
348
348
// Analog Stick Triggers //
@@ -393,9 +393,9 @@ public final void initSendable(SendableBuilder builder) {
393
393
builder .addBooleanProperty ("Face Button Left" , this ::getRawLeftButton , x -> {});
394
394
builder .addBooleanProperty ("Face Button Right" , this ::getRawRightButton , x -> {});
395
395
396
- // Start / Select / Option
397
- builder .addBooleanProperty ("Button Select " , this ::getRawSelectButton , x -> {});
398
- builder .addBooleanProperty ("Button Start " , this ::getRawStartButton , x -> {});
396
+ // Left Menu / Right Menu //
397
+ builder .addBooleanProperty ("Button Left Menu " , this ::getRawLeftMenuButton , x -> {});
398
+ builder .addBooleanProperty ("Button Right Menu " , this ::getRawRightMenuButton , x -> {});
399
399
400
400
// Analog Stick Buttons
401
401
builder .addBooleanProperty ("Left Stick Button" , this ::getRawLeftStickButton , x -> {});
0 commit comments