[AlternateIKSystem] Initial commit - Testing

shit this out in a day, going to see how much i can do before exploding
This commit is contained in:
NotAKidoS 2023-07-11 19:37:36 -05:00
parent fca0a32257
commit e925b0cfcc
16 changed files with 1367 additions and 0 deletions

View file

@ -0,0 +1,17 @@
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.");
}