mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 22:39:22 +00:00
major cleanup
This commit is contained in:
parent
b33e15377f
commit
e5242f76c7
85 changed files with 584 additions and 571 deletions
|
@ -3,11 +3,13 @@ using UnityEngine;
|
|||
|
||||
namespace NAK.DesktopVRIK;
|
||||
|
||||
public class DesktopVRIKMod : MelonMod
|
||||
public class DesktopVRIK : MelonMod
|
||||
{
|
||||
internal static MelonLogger.Instance Logger;
|
||||
public const string SettingsCategory = "DesktopVRIK";
|
||||
public static readonly MelonPreferences_Category CategoryDesktopVRIK = MelonPreferences.CreateCategory(SettingsCategory);
|
||||
internal const string SettingsCategory = nameof(DesktopVRIK);
|
||||
|
||||
public static readonly MelonPreferences_Category CategoryDesktopVRIK =
|
||||
MelonPreferences.CreateCategory(SettingsCategory);
|
||||
|
||||
public static readonly MelonPreferences_Entry<bool> EntryEnabled =
|
||||
CategoryDesktopVRIK.CreateEntry("Enabled", true, description: "Toggle DesktopVRIK entirely. Requires avatar reload.");
|
||||
|
@ -97,7 +99,7 @@ public class DesktopVRIKMod : MelonMod
|
|||
|
||||
// Integration Settings
|
||||
DesktopVRIKSystem.Instance.Setting_IntegrationAMT = EntryIntegrationAMT.Value && integration_AMT;
|
||||
|
||||
|
||||
// Funny Settings
|
||||
DesktopVRIKSystem.Instance.Setting_ProneThrusting = EntryProneThrusting.Value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue