Tile variants content (#6956)

This commit is contained in:
Moony
2022-03-09 13:59:44 -06:00
committed by GitHub
parent d4cfbc6a93
commit 12b682ee4d
17 changed files with 110 additions and 27 deletions

View File

@@ -40,6 +40,13 @@ namespace Content.Shared.Maps
[DataField("friction")] public float Friction { get; set; }
[DataField("variants")] public byte Variants { get; set; } = 1;
/// <summary>
/// This controls what variants the `variantize` command is allowed to use.
/// </summary>
[DataField("placementVariants")] public byte[] PlacementVariants { get; set; } = new byte[1] { 0 };
[DataField("thermalConductivity")] public float ThermalConductivity { get; set; } = 0.05f;
// Heat capacity is opt-in, not opt-out.