diff --git a/KneeFix/HarmonyPatches.cs b/IKFixes/HarmonyPatches.cs similarity index 99% rename from KneeFix/HarmonyPatches.cs rename to IKFixes/HarmonyPatches.cs index cc17073..737fd18 100644 --- a/KneeFix/HarmonyPatches.cs +++ b/IKFixes/HarmonyPatches.cs @@ -7,7 +7,7 @@ using HarmonyLib; using RootMotion.FinalIK; using UnityEngine; -namespace NAK.Melons.KneeFix.HarmonyPatches; +namespace NAK.Melons.IKFixes.HarmonyPatches; internal static class BodySystemPatches { diff --git a/KneeFix/KneeFix.csproj b/IKFixes/IKFixes.csproj similarity index 100% rename from KneeFix/KneeFix.csproj rename to IKFixes/IKFixes.csproj diff --git a/KneeFix/KneeFix.sln b/IKFixes/IKFixes.sln similarity index 100% rename from KneeFix/KneeFix.sln rename to IKFixes/IKFixes.sln diff --git a/KneeFix/Main.cs b/IKFixes/Main.cs similarity index 89% rename from KneeFix/Main.cs rename to IKFixes/Main.cs index 186ad88..1e0da50 100644 --- a/KneeFix/Main.cs +++ b/IKFixes/Main.cs @@ -1,8 +1,8 @@ using MelonLoader; -namespace NAK.Melons.KneeFix; +namespace NAK.Melons.IKFixes; -public class KneeFixMod : MelonMod +public class IKFixesMod : MelonMod { public override void OnInitializeMelon() { diff --git a/KneeFix/Properties/AssemblyInfo.cs b/IKFixes/Properties/AssemblyInfo.cs similarity index 70% rename from KneeFix/Properties/AssemblyInfo.cs rename to IKFixes/Properties/AssemblyInfo.cs index 35cae8b..01df028 100644 --- a/KneeFix/Properties/AssemblyInfo.cs +++ b/IKFixes/Properties/AssemblyInfo.cs @@ -1,20 +1,20 @@ using MelonLoader; -using NAK.Melons.KneeFix.Properties; +using NAK.Melons.IKFixes.Properties; using System.Reflection; [assembly: AssemblyVersion(AssemblyInfoParams.Version)] [assembly: AssemblyFileVersion(AssemblyInfoParams.Version)] [assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)] -[assembly: AssemblyTitle(nameof(NAK.Melons.KneeFix))] +[assembly: AssemblyTitle(nameof(NAK.Melons.IKFixes))] [assembly: AssemblyCompany(AssemblyInfoParams.Author)] -[assembly: AssemblyProduct(nameof(NAK.Melons.KneeFix))] +[assembly: AssemblyProduct(nameof(NAK.Melons.IKFixes))] [assembly: MelonInfo( - typeof(NAK.Melons.KneeFix.KneeFixMod), - nameof(NAK.Melons.KneeFix), + typeof(NAK.Melons.IKFixes.IKFixesMod), + nameof(NAK.Melons.IKFixes), AssemblyInfoParams.Version, AssemblyInfoParams.Author, - downloadLink: "https://github.com/NotAKidOnSteam/KneeFix" + downloadLink: "https://github.com/NotAKidOnSteam/IKFixes" )] [assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")] @@ -22,7 +22,7 @@ using System.Reflection; [assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)] [assembly: HarmonyDontPatchAll] -namespace NAK.Melons.KneeFix.Properties; +namespace NAK.Melons.IKFixes.Properties; internal static class AssemblyInfoParams { public const string Version = "1.0.0"; diff --git a/IKFixes/format.json b/IKFixes/format.json new file mode 100644 index 0000000..a072d41 --- /dev/null +++ b/IKFixes/format.json @@ -0,0 +1,23 @@ +{ + "_id": -1, + "name": "IKFixes", + "modversion": "1.0.0", + "gameversion": "2022r170", + "loaderversion": "0.5.7", + "modtype": "Mod", + "author": "NotAKidoS", + "description": "Small fixes to knee tracking while in FBT, which lead to fixing running animations while in FBT, emotes playing in wrong direction in FBT, being forced to calibrate if all IK Tracking Settings are disabled, and for those not in FBT, VRIK locomotion footsteps on movement parents.", + "searchtags": [ + "knee", + "ik", + "tracking", + "fix" + ], + "requirements": [ + "None" + ], + "downloadlink": "https://github.com/NotAKidOnSteam/IKFixes/releases/download/v1.0.0/IKFixes.dll", + "sourcelink": "https://github.com/NotAKidOnSteam/IKFixes/", + "changelog": "Initial Release", + "embedcolor": "f46e49" +} \ No newline at end of file diff --git a/KneeFix/format.json b/KneeFix/format.json deleted file mode 100644 index 0e02f7e..0000000 --- a/KneeFix/format.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "_id": -1, - "name": "KneeFix", - "modversion": "1.0.0", - "gameversion": "2022r170", - "loaderversion": "0.5.7", - "modtype": "Mod", - "author": "NotAKidoS", - "description": "Small fixes to knee tracking while in FBT.\n\nThis mod also fixes running animations while in FBT, emotes playing in wrong direction in FBT, being forced to calibrate if all IK Tracking Settings are disabled, and for those not in FBT, VRIK locomotion footsteps on movement parents.", - "searchtags": [ - "knee", - "ik", - "tracking", - "fix" - ], - "requirements": [ - "None" - ], - "downloadlink": "https://github.com/NotAKidOnSteam/KneeFix/releases/download/v1.0.0/KneeFix.dll", - "sourcelink": "https://github.com/NotAKidOnSteam/KneeFix/", - "changelog": "Initial Release", - "embedcolor": "f46e49" -} \ No newline at end of file