Rename perlin noise to value noise (#15858)

This commit is contained in:
Erich Schubert
2025-04-10 14:39:40 +02:00
committed by GitHub
parent 372e37faf2
commit 78293404c7
27 changed files with 339 additions and 309 deletions

View File

@@ -179,13 +179,13 @@ class ModApiEnv : public ModApiEnvBase {
// delete_area(p1, p2) -> true/false
static int l_delete_area(lua_State *L);
// get_perlin(seeddiff, octaves, persistence, scale)
// returns world-specific PerlinNoise
static int l_get_perlin(lua_State *L);
// get_value_noise(seeddiff, octaves, persistence, scale)
// returns world-specific ValueNoise
static int l_get_value_noise(lua_State *L);
// get_perlin_map(noiseparams, size)
// returns world-specific PerlinNoiseMap
static int l_get_perlin_map(lua_State *L);
// get_value_noise_map(noiseparams, size)
// returns world-specific ValueNoiseMap
static int l_get_value_noise_map(lua_State *L);
// get_voxel_manip()
// returns world-specific voxel manipulator