Add inhand fill visuals (#24495)

* Add inhand fill visuals

* oops

* remove unused import
This commit is contained in:
themias
2024-01-28 20:38:06 -05:00
committed by GitHub
parent 5267d3c601
commit bd100344a2
65 changed files with 210 additions and 22 deletions

View File

@@ -1,3 +1,4 @@
using Content.Shared.Hands.Components;
using Robust.Shared.Utility;
namespace Content.Shared.Chemistry.Components
@@ -40,5 +41,17 @@ namespace Content.Shared.Chemistry.Components
[DataField]
public string InitialDescription = string.Empty;
/// <summary>
/// Optional in-hand visuals to to show someone is holding a filled beaker/jug/etc.
/// </summary>
[DataField]
public string? InHandsFillBaseName = null;
/// <summary>
/// A separate max fill levels for in-hands (to reduce number of sprites needed)
/// </summary>
[DataField]
public int InHandsMaxFillLevels = 0;
}
}