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
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,7 @@ public class Buttons
114
114
newButtonInfo{buttonText="Change Notification Scale",overlapText="Change Notification Scale <color=grey>[</color><color=green>6</color><color=grey>]</color>",method=()=>Settings.ChangeNotificationScale(),enableMethod=()=>Settings.ChangeNotificationScale(),disableMethod=()=>Settings.ChangeNotificationScale(false),incremental=true,isTogglable=false,toolTip="Changes the scale of the notifications."},
115
115
newButtonInfo{buttonText="Change Arraylist Scale",overlapText="Change Arraylist Scale <color=grey>[</color><color=green>4</color><color=grey>]</color>",method=()=>Settings.ChangeArraylistScale(),enableMethod=()=>Settings.ChangeArraylistScale(),disableMethod=()=>Settings.ChangeArraylistScale(false),incremental=true,isTogglable=false,toolTip="Changes the scale of the arraylist."},
116
116
newButtonInfo{buttonText="Change Overlay Scale",overlapText="Change Overlay Scale <color=grey>[</color><color=green>6</color><color=grey>]</color>",method=()=>Settings.ChangeOverlayScale(),enableMethod=()=>Settings.ChangeOverlayScale(),disableMethod=()=>Settings.ChangeOverlayScale(false),incremental=true,isTogglable=false,toolTip="Changes the scale of the overlay."},
117
+
newButtonInfo{buttonText="Change Page Size",overlapText="Change Page Size <color=grey>[</color><color=green>6</color><color=grey>]</color>",method=()=>Settings.ChangePageSize(),enableMethod=()=>Settings.ChangePageSize(),disableMethod=()=>Settings.ChangePageSize(false),incremental=true,isTogglable=false,toolTip="Changes the amount of buttons per page."},
117
118
newButtonInfo{buttonText="Custom Menu Theme",enableMethod=()=>Settings.CustomMenuTheme(),disableMethod=()=>Settings.FixTheme(),toolTip="Changes the theme of the menu to a custom one."},
118
119
newButtonInfo{buttonText="Change Custom Menu Theme",method=()=>Settings.ChangeCustomMenuTheme(),isTogglable=false,toolTip="Changes the theme of custom the menu."},
119
120
newButtonInfo{buttonText="Custom Menu Background",enableMethod=()=>Settings.CustomMenuBackground(),disableMethod=()=>Settings.FixMenuBackground(),toolTip=$"Changes the background of the menu to a custom image. You can change the photo inside of your Gorilla Tag File ({PluginInfo.BaseDirectory}/iiMenu_CustomMenuBackground.txt)."},
@@ -164,10 +165,10 @@ public class Buttons
164
165
newButtonInfo{buttonText="Disable Enabled GUI",overlapText="Disable Arraylist GUI",enableMethod=()=>showEnabledModsVR=false,disableMethod=()=>showEnabledModsVR=true,toolTip="Disables the GUI that shows the enabled mods."},
165
166
newButtonInfo{buttonText="Disable Incremental Buttons",enableMethod=()=>incrementalButtons=false,disableMethod=()=>incrementalButtons=true,toolTip="Disables the buttons with the increment and decrement buttons next to it."},
166
167
newButtonInfo{buttonText="Disable Disconnect Button",enableMethod=()=>disableDisconnectButton=true,disableMethod=()=>disableDisconnectButton=false,toolTip="Disables the disconnect button at the top of the menu."},
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
+
newButtonInfo{buttonText="Disable Menu Title",method=()=>{if(pageButtonType==1)buttonOffset=1;elsebuttonOffset=-1;hidetitle=true;},disableMethod=()=>{if(pageButtonType==1)buttonOffset=2;elsebuttonOffset=0;hidetitle=false;},toolTip="Hides the menu title, allowing for more buttons per page."},
168
169
newButtonInfo{buttonText="Disable Search Button",enableMethod=()=>disableSearchButton=true,disableMethod=()=>disableSearchButton=false,toolTip="Disables the search button at the bottom of the menu."},
169
170
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."},
171
+
newButtonInfo{buttonText="Info Button",enableMethod=()=>enableDebugButton=true,disableMethod=()=>enableDebugButton=false,toolTip="Shows an information button at the bottom of the menu."},
171
172
newButtonInfo{buttonText="Disable Page Buttons",enableMethod=()=>Settings.DisablePageButtons(),disableMethod=()=>disablePageButtons=false,toolTip="Disables the page buttons. Recommended with Joystick Menu."},
172
173
newButtonInfo{buttonText="Disable Page Number",enableMethod=()=>noPageNumber=true,disableMethod=()=>noPageNumber=false,toolTip="Disables the current page number in the title text."},
173
174
newButtonInfo{buttonText="Disable FPS Counter",enableMethod=()=>disableFpsCounter=true,disableMethod=()=>disableFpsCounter=false,toolTip="Disables the FPS counter."},
@@ -1558,7 +1559,7 @@ public class Buttons
1558
1559
newButtonInfo[]{// Internal Mods (hidden from user) [25]
1559
1560
newButtonInfo{buttonText="Search",method=()=>Settings.Search(),isTogglable=false,toolTip="Lets you search for specific mods."},
1560
1561
newButtonInfo{buttonText="Global Return",method=()=>Settings.GlobalReturn(),isTogglable=false,toolTip="Returns you to the previous category."},
1561
-
newButtonInfo{buttonText="Debug Screen",method=()=>Settings.Debug(),enableMethod=()=>Settings.ShowDebug(),disableMethod=()=>Settings.HideDebug(),toolTip="Shows game and modding related information."},
1562
+
newButtonInfo{buttonText="Info Screen",method=()=>Settings.Debug(),enableMethod=()=>Settings.ShowDebug(),disableMethod=()=>Settings.HideDebug(),toolTip="Shows game and modding related information."},
0 commit comments