6
2025-11-03 10:15:18 +03:00

11 lines
288 B
C#

namespace Content.Shared.Procedural.Distance;
/// <summary>
/// Produces a squarish-shape that's better for filling in most of the area.
/// </summary>
public sealed partial class DunGenSquareBump : IDunGenDistance
{
[DataField]
public float BlendWeight { get; set; } = 0.50f;
}