IDunGenDistance.cs 396 B

1234567891011121314
  1. namespace Content.Shared.Procedural.Distance;
  2. /// <summary>
  3. /// Used if you want to limit the distance noise is generated by some arbitrary config
  4. /// </summary>
  5. [ImplicitDataDefinitionForInheritors]
  6. public partial interface IDunGenDistance
  7. {
  8. /// <summary>
  9. /// How much to blend between the original noise value and the adjusted one.
  10. /// </summary>
  11. float BlendWeight { get; }
  12. }