[RelativeSync] Alt Pickup Test

This commit is contained in:
NotAKidoS 2024-06-10 00:47:51 -05:00
parent 564e50070a
commit f2c3fcc50e
4 changed files with 438 additions and 1 deletions

View file

@ -28,6 +28,10 @@ internal static class ModSettings
Category.CreateEntry("ExpNoInterpolationOnBBCC", true,
"Exp Disable Interpolation on BBCC", description: "Disable interpolation on Better Better Character Controller. May help reduce local jitter on synced movement parents.");
private static readonly MelonPreferences_Entry<bool> ExpSeatAndPickupsHack =
Category.CreateEntry("ExpSeatAndPickupsHack", true,
"Exp Seat and Pickups Hack", description: "Forces CVRSeat to update after Character Controller update.");
#endregion Melon Preferences
internal static void Initialize()
@ -44,5 +48,6 @@ internal static class ModSettings
ModNetwork.Debug_NetworkOutbound = DebugLogOutbound.Value;
Patches.CVRSpawnablePatches.UseHack = ExpSyncedObjectHack.Value;
Patches.BetterBetterCharacterControllerPatches.NoInterpolation = ExpNoInterpolationOnBBCC.Value;
Patches.BetterBetterCharacterControllerPatches.UseSeatAndPickupsHack = ExpSeatAndPickupsHack.Value;
}
}