[ThirdPerson] Fixed for Stable and Nightly, did some cleanup

- Adjusted the local player scaled event patch to work both on Stable and Nightly
This commit is contained in:
NotAKidoS 2025-07-15 21:02:03 -05:00
parent bf877124c1
commit e96a0e164d
4 changed files with 11 additions and 13 deletions

View file

@ -32,6 +32,6 @@ internal static class Patches
//Copy camera settings & postprocessing components
private static void OnPostWorldStart() => CopyPlayerCamValues();
//Adjust camera distance with height as modifier
private static void OnScaleAdjusted(float height) => AdjustScale(height);
private static void OnScaleAdjusted(ref float ____avatarScaleRelation) => AdjustScale(____avatarScaleRelation);
private static void OnConfigureHudAffinity() => CheckVRMode();
}