DunGenSquareBump.cs 288 B

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