first commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using NitroxClient.Communication;
|
||||
using NitroxClient.GameLogic.Spawning.Metadata.Processor.Abstract;
|
||||
using NitroxModel.DataStructures.GameLogic.Entities.Metadata;
|
||||
using NitroxModel.Packets;
|
||||
using UnityEngine;
|
||||
|
||||
namespace NitroxClient.GameLogic.Spawning.Metadata.Processor;
|
||||
|
||||
public class ExosuitMetadataProcessor : VehicleMetadataProcessor<ExosuitMetadata>
|
||||
{
|
||||
public ExosuitMetadataProcessor(LiveMixinManager liveMixinManager) : base(liveMixinManager) { }
|
||||
|
||||
public override void ProcessMetadata(GameObject gameObject, ExosuitMetadata metadata)
|
||||
{
|
||||
if (!gameObject.TryGetComponent(out Exosuit exosuit))
|
||||
{
|
||||
Log.ErrorOnce($"[{nameof(ExosuitMetadataProcessor)}] Could not find {nameof(Exosuit)} on {gameObject}");
|
||||
return;
|
||||
}
|
||||
if (!gameObject.TryGetComponent(out SubName subName))
|
||||
{
|
||||
Log.ErrorOnce($"[{nameof(ExosuitMetadataProcessor)}] Could not find {nameof(SubName)} on {gameObject}");
|
||||
return;
|
||||
}
|
||||
|
||||
using (PacketSuppressor<EntityMetadataUpdate>.Suppress())
|
||||
{
|
||||
SetHealth(gameObject, metadata.Health);
|
||||
SetNameAndColors(subName, metadata.Name, metadata.Colors);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user