decal settings (#20324)

This commit is contained in:
Nemanja
2023-09-18 19:17:48 -04:00
committed by GitHub
parent c42567c280
commit 06ad5221ee
11 changed files with 655 additions and 3 deletions

View File

@@ -15,5 +15,23 @@ namespace Content.Shared.Decals
/// If the decal is rotated compared to our eye should we snap it to south.
/// </summary>
[DataField("snapCardinals")] public bool SnapCardinals = false;
/// <summary>
/// True if this decal is cleanable by default.
/// </summary>
[DataField]
public bool DefaultCleanable;
/// <summary>
/// True if this decal has custom colors applied by default
/// </summary>
[DataField]
public bool DefaultCustomColor;
/// <summary>
/// True if this decal snaps to a tile by default
/// </summary>
[DataField]
public bool DefaultSnap = true;
}
}