Skip to content

Instantly share code, notes, and snippets.

@misode
Last active May 19, 2022 21:24
Show Gist options
  • Save misode/c9a5a41b34391731da6ad3b30cecd057 to your computer and use it in GitHub Desktop.
Save misode/c9a5a41b34391731da6ad3b30cecd057 to your computer and use it in GitHub Desktop.
Table of Contents
Density Factor
Slides
target
size
offset

density_factor

density_factor density_offset
2 0 2_0
1 0 1_0
1/2 0 1-2_0
1/4 0 1-4_0
1/8 0 1-8_0
1/16 0 1-16_0
1/32 0 1-32_0
1/64 0 1-64_0
0 0 0_0

Slides

Curves at the bottom and top of the world. Either removes or add terrain.

The examples below use top_slide, bottom_slide works similar but at the bottom of the world. density_factor and density_offset are both 0 in these examples.

target

Positive values add terrain, negative values remove terrain.

target size offset
-30 1 0 -30_1_0
-20 1 0 -20_1_0
-10 1 0
0 1 0 0_0
10 1 0 10_1_0
20 1 0 20_1_0
30 1 0 30_1_0

size

Determines the affected range. In steps of 4 * size_vertical. For example if size_vertical is 2 and size is 3, the curve will be spread out over 24 blocks.

target size offset
30 1 0 30_1_0
30 2 0 30_2_0
30 3 0 30_3_0
30 4 0 30_4_0
30 5 0 30_5_0

offset

Moves the affected range closer to the center of the world. Works in steps of 4 * size_vertical just like size.

target size offset
30 1 0 30_1_0
30 1 1 30_1_1
30 1 2 30_1_2
30 1 3 30_1_3
30 1 4 30_1_4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment