mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
47 lines
No EOL
2.1 KiB
C#
47 lines
No EOL
2.1 KiB
C#
using MelonLoader;
|
|
|
|
namespace NAK.Melons.BadAnimatorFix;
|
|
|
|
public class BadAnimatorFixMod : MelonMod
|
|
{
|
|
internal static MelonLogger.Instance Logger;
|
|
public const string SettingsCategory = "BadAnimatorFix";
|
|
public static readonly MelonPreferences_Category CategoryBadAnimatorFix = MelonPreferences.CreateCategory(SettingsCategory);
|
|
|
|
public static readonly MelonPreferences_Entry<bool> EntryEnabled =
|
|
CategoryBadAnimatorFix.CreateEntry("Enabled", true, description: "Toggle BadAnimatorFix entirely. Requires avatar/spawnable/world reload.");
|
|
|
|
public static readonly MelonPreferences_Entry<bool> EntryCVRAvatar =
|
|
CategoryBadAnimatorFix.CreateEntry("Add to CVRAvatar", true, description: "Should BadAnimatorFix run for CVRAvatar? Requires avatar reload.");
|
|
|
|
public static readonly MelonPreferences_Entry<bool> EntryCVRSpawnable =
|
|
CategoryBadAnimatorFix.CreateEntry("Add to CVRSpawnable", false, description: "Should BadAnimatorFix run for CVRSpawnable? Requires spawnable reload.");
|
|
|
|
public static readonly MelonPreferences_Entry<bool> EntryCVRWorld =
|
|
CategoryBadAnimatorFix.CreateEntry("Add to CVRWorld", false, description: "Should BadAnimatorFix run for CVRWorld? Requires world reload.");
|
|
|
|
public static readonly MelonPreferences_Entry<bool> EntryMenus =
|
|
CategoryBadAnimatorFix.CreateEntry("Add to Menus", false, description: "Should BadAnimatorFix run for QM & MM? Requires game restart.");
|
|
|
|
public static readonly MelonPreferences_Entry<float> EntryPlayableTimeLimit =
|
|
CategoryBadAnimatorFix.CreateEntry("Playable Time Limit", 600f, description: "How long in seconds can a Playable play for before rewinding its states.");
|
|
|
|
public override void OnInitializeMelon()
|
|
{
|
|
Logger = LoggerInstance;
|
|
ApplyPatches(typeof(HarmonyPatches.AnimatorPatches));
|
|
}
|
|
|
|
private void ApplyPatches(Type type)
|
|
{
|
|
try
|
|
{
|
|
HarmonyInstance.PatchAll(type);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Msg($"Failed while patching {type.Name}!");
|
|
Logger.Error(e);
|
|
}
|
|
}
|
|
} |