depricated bunch of mods i will never touch or are native now

This commit is contained in:
NotAKidoS 2024-09-06 01:22:37 -05:00
parent 1ed32799a8
commit 7f4237bf95
29 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,27 @@
using MelonLoader;
namespace NAK.MoreMenuOptions;
public static class ModSettings
{
private const string SettingsCategory = nameof(MoreMenuOptions);
private static readonly MelonPreferences_Category Category =
MelonPreferences.CreateCategory(SettingsCategory);
// main menu options
internal static readonly MelonPreferences_Entry<MoreMenuOptions.MainMenuModifierUsage> EntryMainMenuModiferUsage =
Category.CreateEntry("Main Menu Modifier Usage", MoreMenuOptions.MainMenuModifierUsage.Both, description: "The usage of the main menu modifier.");
internal static readonly MelonPreferences_Entry<float> EntryMMScaleModifier =
Category.CreateEntry("Main Menu Scale Modifier", 0.75f, description: "The scale of the main menu.");
internal static readonly MelonPreferences_Entry<float> EntryMMDistanceModifier =
Category.CreateEntry("Main Menu Distance Modifier", 0.1f, description: "The distance of the main menu from the camera.");
// quick menu options
internal static readonly MelonPreferences_Entry<bool> EntryQMWorldAnchorInVR =
Category.CreateEntry("Quick Menu World Anchor In VR", false, description: "Toggle the quick menu world anchor in VR.");
}