first commit
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using System.Reflection;
|
||||
using NitroxClient.GameLogic;
|
||||
using NitroxClient.MonoBehaviours.Cyclops;
|
||||
using NitroxClient.Unity.Helper;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.Helper;
|
||||
|
||||
namespace NitroxPatcher.Patches.Dynamic;
|
||||
|
||||
/// <summary>
|
||||
/// Broadcasts openables (door, traps) being opened/closed. Replicates this state for the associated virtual cyclops.
|
||||
/// </summary>
|
||||
public sealed partial class Openable_PlayOpenAnimation_Patch : NitroxPatch, IDynamicPatch
|
||||
{
|
||||
private static readonly MethodInfo TARGET_METHOD = Reflect.Method((Openable t) => t.PlayOpenAnimation(default(bool), default(float)));
|
||||
|
||||
public static bool Prefix(Openable __instance, bool openState, float duration)
|
||||
{
|
||||
if (__instance.TryGetComponentInParent(out NitroxCyclops nitroxCyclops) && nitroxCyclops.Virtual)
|
||||
{
|
||||
nitroxCyclops.Virtual.ReplicateOpening(__instance, openState);
|
||||
}
|
||||
|
||||
// Do not try to sync
|
||||
if (__instance.GetComponentInParent<VirtualCyclops>())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
if (__instance.isOpen != openState && __instance.TryGetIdOrWarn(out NitroxId id))
|
||||
{
|
||||
Resolve<Interior>().OpenableStateChanged(id, openState, duration);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user