Fast Noise Configs - Apollounknowndev/lithostitched GitHub Wiki
Similar to how noise density functions in vanilla reference noise configs from the worldgen/noise registry, fast_noise density functions reference fast noise configs from the lithostitched/fast_noise_config registry.
Here's an example fast noise config:
{
"type": "lithostitched:cellular",
"frequency": 0.002,
"salt": 304658814,
"distance_function": "euclidean",
"return_type": "cell_value",
"jitter": 1
}
All fast noise configs have a type field, a float frequency, and an optional int salt.
cellularjitter: How much to jitter the cells. A float between -1 and 1.distance_function: The distance function to use. Accepted values:euclidean,euclidean_squared,manhattan,hybridreturn_type: The value to return. Accepted values:cell_value,distance,distance_2,distance_2_add,distance_2_sub,distance_2_mul,distance_2_div
perlin- Not sure why you would use this, but it's here lmao
simplexfractal_type: The fractal type to use. Accepted values:none,fbm,ridged,ping_pong,domain_warp_progressive,domain_warp_independentoctaves: Optional non-negative int.lacunarity: Optional float.gain: Optional float.