|
1099 | 1099 | # type: int
|
1100 | 1100 | # num_emerge_threads = 1
|
1101 | 1101 |
|
| 1102 | +#### Noise parameters and formats |
| 1103 | + |
| 1104 | +# Noise parameters can be specified as a set of positional values, for example: |
| 1105 | +# Offset, scale, (spread factors), seed offset, number of octaves, persistence, lacunarity |
| 1106 | +# mgv6_np_terrain_base = -4, 20, (250, 250, 250), 82341, 5, 0.6, 2.0 |
| 1107 | +# Or the group format can be used instead, for example: |
| 1108 | +# mgv6_np_terrain_base = { |
| 1109 | +# offset = -4, |
| 1110 | +# scale = 20, |
| 1111 | +# spread = (250, 250, 250), |
| 1112 | +# seed = 82341, |
| 1113 | +# octaves = 5, |
| 1114 | +# persistence = 0.6, |
| 1115 | +# lacunarity = 2.0, |
| 1116 | +# flags = "defaults" |
| 1117 | +# } |
| 1118 | +# Only the group format supports noise flags which are needed for eased noise. |
| 1119 | +# Mgv5 uses eased noise for np_ground so this is shown in group format below. |
| 1120 | + |
1102 | 1121 | # Noise parameters for biome API temperature, humidity and biome blend.
|
1103 | 1122 | # type: noise_params
|
1104 | 1123 | # mg_biome_np_heat = 50, 50, (750, 750, 750), 5349, 3, 0.5, 2.0
|
|
1133 | 1152 | # type: noise_params
|
1134 | 1153 | # mgv5_np_cave2 = 0, 12, (50, 50, 50), 10325, 4, 0.5, 2.0
|
1135 | 1154 |
|
| 1155 | +# Noise parameters in group format, unsupported by advanced settings |
| 1156 | +# menu but settable in minetest.conf. |
| 1157 | +# See documentation of noise parameter formats above. |
| 1158 | +# mgv5_np_ground = { |
| 1159 | +# offset = 0, |
| 1160 | +# scale = 40, |
| 1161 | +# spread = (80, 80, 80), |
| 1162 | +# seed = 983240, |
| 1163 | +# octaves = 4, |
| 1164 | +# persistence = 0.55, |
| 1165 | +# lacunarity = 2.0, |
| 1166 | +# flags = "eased" |
| 1167 | +# } |
| 1168 | + |
1136 | 1169 | #### Mapgen v6
|
1137 | 1170 |
|
1138 | 1171 | # Map generation attributes specific to Mapgen v6.
|
|
0 commit comments