first commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using NitroxClient.Communication.Abstract;
|
||||
using NitroxClient.Communication.Packets.Processors.Abstract;
|
||||
using NitroxClient.MonoBehaviours;
|
||||
using NitroxClient.Unity.Helper;
|
||||
using NitroxModel.Packets;
|
||||
using UnityEngine;
|
||||
|
||||
namespace NitroxClient.Communication.Packets.Processors
|
||||
{
|
||||
public class OpenableStateChangedProcessor : ClientPacketProcessor<OpenableStateChanged>
|
||||
{
|
||||
private readonly IPacketSender packetSender;
|
||||
|
||||
public OpenableStateChangedProcessor(IPacketSender packetSender)
|
||||
{
|
||||
this.packetSender = packetSender;
|
||||
}
|
||||
|
||||
public override void Process(OpenableStateChanged packet)
|
||||
{
|
||||
GameObject gameObject = NitroxEntity.RequireObjectFrom(packet.Id);
|
||||
Openable openable = gameObject.RequireComponent<Openable>();
|
||||
|
||||
using (PacketSuppressor<OpenableStateChanged>.Suppress())
|
||||
{
|
||||
openable.PlayOpenAnimation(packet.IsOpen, packet.Duration);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user