31 lines
765 B
C#
31 lines
765 B
C#
using Content.Shared.Morgue;
|
|
using JetBrains.Annotations;
|
|
using Robust.Client.GameObjects;
|
|
|
|
namespace Content.Client.Morgue.Visualizers
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed class BodyBagVisualizer : AppearanceVisualizer
|
|
{
|
|
public override void OnChangeData(AppearanceComponent component)
|
|
{
|
|
base.OnChangeData(component);
|
|
|
|
if (!component.Owner.TryGetComponent(out ISpriteComponent? sprite))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (component.TryGetData(BodyBagVisuals.Label, out bool labelVal))
|
|
{
|
|
sprite.LayerSetVisible(BodyBagVisualLayers.Label, labelVal);
|
|
}
|
|
}
|
|
}
|
|
|
|
public enum BodyBagVisualLayers : byte
|
|
{
|
|
Label,
|
|
}
|
|
}
|