@@ -128,14 +128,14 @@ public boolean getRawRightButton() {
128128 return false ;
129129 }
130130
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 () {
134134 return false ;
135135 }
136136
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 () {
139139 return false ;
140140 }
141141
@@ -334,15 +334,15 @@ public final Trigger getRightButton() {
334334 return new Trigger (this ::getRawRightButton );
335335 }
336336
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 );
341341 }
342342
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 );
346346 }
347347
348348 // Analog Stick Triggers //
@@ -393,9 +393,9 @@ public final void initSendable(SendableBuilder builder) {
393393 builder .addBooleanProperty ("Face Button Left" , this ::getRawLeftButton , x -> {});
394394 builder .addBooleanProperty ("Face Button Right" , this ::getRawRightButton , x -> {});
395395
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 -> {});
399399
400400 // Analog Stick Buttons
401401 builder .addBooleanProperty ("Left Stick Button" , this ::getRawLeftStickButton , x -> {});
0 commit comments