Enumeration Casemigueldeicaza.swiftgodot 0.45.0SwiftGodot
cellular
Cellular includes both Worley noise and Voronoi diagrams which creates various regions of the same value.
FastNoiseLite.swift:27case cellular
Other cases
case value
A lattice of points are assigned random values then interpolated based on neighboring values.
case valueCubic
Similar to Value noise, but slower. Has more variance in peaks and valleys.
case perlin
A lattice of random gradients. Their dot products are interpolated to obtain values in between the lattices.
case simplex
As opposed to .typePerlin, gradients exist in a simplex lattice rather than a grid lattice, avoiding directional artifacts.
case simplexSmooth
Modified, higher quality version of .typeSimplex, but slower.