You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Menu/Buttons.cs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -167,13 +167,16 @@ public class Buttons
167
167
newButtonInfo{buttonText="Disable Menu Title",method=()=>{if(pageButtonType!=1){Main.pageSize=9;Main.buttonOffset=-1;hidetitle=true;}},disableMethod=()=>{Main.pageSize=8;Main.buttonOffset=0;hidetitle=false;},toolTip="Hides the menu title, allowing for more buttons per page."},
168
168
newButtonInfo{buttonText="Disable Search Button",enableMethod=()=>disableSearchButton=true,disableMethod=()=>disableSearchButton=false,toolTip="Disables the search button at the bottom of the menu."},
169
169
newButtonInfo{buttonText="Disable Return Button",enableMethod=()=>disableReturnButton=true,disableMethod=()=>disableReturnButton=false,toolTip="Disables the return button at the bottom of the menu."},
170
+
newButtonInfo{buttonText="Info Button",enableMethod=()=>enableDebugButton=true,disableMethod=()=>enableDebugButton=false,toolTip="Disables the information button at the bottom of the menu."},
170
171
newButtonInfo{buttonText="Disable Page Buttons",enableMethod=()=>Settings.DisablePageButtons(),disableMethod=()=>disablePageButtons=false,toolTip="Disables the page buttons. Recommended with Joystick Menu."},
171
172
newButtonInfo{buttonText="Disable Page Number",enableMethod=()=>noPageNumber=true,disableMethod=()=>noPageNumber=false,toolTip="Disables the current page number in the title text."},
172
173
newButtonInfo{buttonText="Disable FPS Counter",enableMethod=()=>disableFpsCounter=true,disableMethod=()=>disableFpsCounter=false,toolTip="Disables the FPS counter."},
173
174
newButtonInfo{buttonText="Disable Drop Menu",enableMethod=()=>dropOnRemove=false,disableMethod=()=>dropOnRemove=true,toolTip="Makes the menu despawn instead of falling."},
174
175
newButtonInfo{buttonText="Disable Board Colors",overlapText="Disable Custom Boards",enableMethod=()=>Settings.DisableBoardColors(),disableMethod=()=>Settings.EnableBoardColors(),toolTip="Disables the board colors to look legitimate on screen share."},
175
176
newButtonInfo{buttonText="Disable Custom Text Colors",enableMethod=()=>disableBoardTextColor=true,disableMethod=()=>disableBoardTextColor=false,toolTip="Disables the text colors on the boards to make them match their original theme."},
176
177
178
+
newButtonInfo{buttonText="Info Hide ID",enableMethod=()=>Settings.hideId=true,disableMethod=()=>Settings.hideId=false,toolTip="Hides your ID in the information page."},
179
+
177
180
newButtonInfo{buttonText="Hide Text on Camera",enableMethod=()=>hideTextOnCamera=true,disableMethod=()=>hideTextOnCamera=false,overlapText="Streamer Mode Menu Text",toolTip="Makes the menu's text only render on VR."},
178
181
newButtonInfo{buttonText="Hide Pointer",enableMethod=()=>hidePointer=true,disableMethod=()=>hidePointer=false,toolTip="Hides the pointer above your head."},
179
182
newButtonInfo{buttonText="Hide Settings",enableMethod=()=>hideSettings=true,disableMethod=()=>hideSettings=false,toolTip="Hides all settings from the Enabled Mods tab, and all arraylists."},
@@ -1550,7 +1553,8 @@ public class Buttons
1550
1553
1551
1554
newButtonInfo[]{// Internal Mods (hidden from user) [25]
1552
1555
newButtonInfo{buttonText="Search",method=()=>Settings.Search(),isTogglable=false,toolTip="Lets you search for specific mods."},
1553
-
newButtonInfo{buttonText="Global Return",method=()=>Settings.GlobalReturn(),isTogglable=false,toolTip="Returns you to the previous category."}
1556
+
newButtonInfo{buttonText="Global Return",method=()=>Settings.GlobalReturn(),isTogglable=false,toolTip="Returns you to the previous category."},
1557
+
newButtonInfo{buttonText="Debug Screen",method=()=>Settings.Debug(),enableMethod=()=>Settings.ShowDebug(),disableMethod=()=>Settings.HideDebug(),toolTip="Shows game and modding related information."}
0 commit comments