NAK_CVR_Mods/AlternateIKSystem/ModSettings.cs
NotAKidoS e925b0cfcc [AlternateIKSystem] Initial commit - Testing
shit this out in a day, going to see how much i can do before exploding
2023-07-11 19:37:36 -05:00

17 lines
No EOL
730 B
C#

using MelonLoader;
namespace NAK.AlternateIKSystem;
public static class ModSettings
{
internal const string SettingsCategory = nameof(AlternateIKSystem);
public static readonly MelonPreferences_Category Category =
MelonPreferences.CreateCategory(SettingsCategory);
public static readonly MelonPreferences_Entry<bool> EntryEnabled =
Category.CreateEntry("Enabled", true, description: "Toggle AlternateIKSystem entirely. Requires avatar reload.");
public static readonly MelonPreferences_Entry<bool> EntryUseVRIKToes =
Category.CreateEntry("Use VRIK Toes", false, description: "Determines if VRIK uses humanoid toes for IK solving, which can cause feet to idle behind the avatar.");
}