This commit is contained in:
NotAKidoS 2023-04-07 22:39:54 -05:00
parent 74d44b47ff
commit 54c7c7cb57
7 changed files with 33 additions and 33 deletions

View file

@ -7,7 +7,7 @@ using HarmonyLib;
using RootMotion.FinalIK; using RootMotion.FinalIK;
using UnityEngine; using UnityEngine;
namespace NAK.Melons.KneeFix.HarmonyPatches; namespace NAK.Melons.IKFixes.HarmonyPatches;
internal static class BodySystemPatches internal static class BodySystemPatches
{ {

View file

@ -1,8 +1,8 @@
using MelonLoader; using MelonLoader;
namespace NAK.Melons.KneeFix; namespace NAK.Melons.IKFixes;
public class KneeFixMod : MelonMod public class IKFixesMod : MelonMod
{ {
public override void OnInitializeMelon() public override void OnInitializeMelon()
{ {

View file

@ -1,20 +1,20 @@
using MelonLoader; using MelonLoader;
using NAK.Melons.KneeFix.Properties; using NAK.Melons.IKFixes.Properties;
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)] [assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)] [assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)] [assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Melons.KneeFix))] [assembly: AssemblyTitle(nameof(NAK.Melons.IKFixes))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)] [assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Melons.KneeFix))] [assembly: AssemblyProduct(nameof(NAK.Melons.IKFixes))]
[assembly: MelonInfo( [assembly: MelonInfo(
typeof(NAK.Melons.KneeFix.KneeFixMod), typeof(NAK.Melons.IKFixes.IKFixesMod),
nameof(NAK.Melons.KneeFix), nameof(NAK.Melons.IKFixes),
AssemblyInfoParams.Version, AssemblyInfoParams.Version,
AssemblyInfoParams.Author, AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidOnSteam/KneeFix" downloadLink: "https://github.com/NotAKidOnSteam/IKFixes"
)] )]
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")] [assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")]
@ -22,7 +22,7 @@ using System.Reflection;
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)] [assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: HarmonyDontPatchAll] [assembly: HarmonyDontPatchAll]
namespace NAK.Melons.KneeFix.Properties; namespace NAK.Melons.IKFixes.Properties;
internal static class AssemblyInfoParams internal static class AssemblyInfoParams
{ {
public const string Version = "1.0.0"; public const string Version = "1.0.0";

23
IKFixes/format.json Normal file
View file

@ -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"
}

View file

@ -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"
}