mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
17 lines
No EOL
730 B
C#
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.");
|
|
} |