namespace Content.Shared.Procedural.Distance; /// /// Used if you want to limit the distance noise is generated by some arbitrary config /// [ImplicitDataDefinitionForInheritors] public partial interface IDunGenDistance { /// /// How much to blend between the original noise value and the adjusted one. /// float BlendWeight { get; } }