Fix rotation visuals desync & appearance state spam (#23016)
* Fix rotation visuals desync * :bucklemeup: * A
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Shared.Chemistry.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public sealed partial class SolutionContainerVisualsComponent : Component
|
||||
{
|
||||
[DataField]
|
||||
public int MaxFillLevels = 0;
|
||||
[DataField]
|
||||
public string? FillBaseName = null;
|
||||
[DataField]
|
||||
public SolutionContainerLayers Layer = SolutionContainerLayers.Fill;
|
||||
[DataField]
|
||||
public SolutionContainerLayers BaseLayer = SolutionContainerLayers.Base;
|
||||
[DataField]
|
||||
public SolutionContainerLayers OverlayLayer = SolutionContainerLayers.Overlay;
|
||||
[DataField]
|
||||
public bool ChangeColor = true;
|
||||
[DataField]
|
||||
public string? EmptySpriteName = null;
|
||||
[DataField]
|
||||
public Color EmptySpriteColor = Color.White;
|
||||
[DataField]
|
||||
public bool Metamorphic = false;
|
||||
[DataField]
|
||||
public SpriteSpecifier? MetamorphicDefaultSprite;
|
||||
[DataField]
|
||||
public LocId MetamorphicNameFull = "transformable-container-component-glass";
|
||||
|
||||
/// <summary>
|
||||
/// Which solution of the SolutionContainerManagerComponent to represent.
|
||||
/// If not set, will work as default.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public string? SolutionName;
|
||||
|
||||
[DataField]
|
||||
public string InitialName = string.Empty;
|
||||
|
||||
[DataField]
|
||||
public string InitialDescription = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user