Go to file
sfan5 d55b4ad71e Add mod.conf 2021-02-24 11:36:55 +01:00
.gitignore Initial commit 2017-09-22 13:23:54 +02:00
README.md smooth: add iterations parameter 2018-05-29 12:05:46 +02:00
init.lua Fix broken //ores depth parameter 2020-04-07 13:29:46 +02:00
mod.conf Add mod.conf 2021-02-24 11:36:55 +01:00
parse2d.py Initial commit 2017-09-22 13:23:54 +02:00

README.md

we_env

Tools to aid the forming of "natural" terrain by hand using WorldEdit's brush.

This is more of a proof of concept and might be merged into WorldEdit in the future.

Command reference

  • //fall

Make all gravity-affected nodes in the current selection fall down. Unlike the usual "punch to cause fall" this works en masse.

  • //populate

Convert terrain (default:dirt only) in current selection to look like "real" terrain. Meaning: Add grass on top and change deeper nodes to stone.

  • //ores [y]

Let the map generator generate ores in the selected region, this works with whatever ores mods have registered. The optional argument specifies which height is used for deciding the ores to generate and defaults to sea level (0).

  • //smooth [iterations]

Smooth terrain in the current selection. When adding nodes, the type of the top-most node in the column is used. This uses an exponentially weighted moving average (EWMA) and should be ran with 1 (the default) or 2 iterations to produce good results.

  • //smoothbrush

Assign terrain smoothing (see above) to a brush. Note that the brush will smooth a 10x10 area with heights up to 48 at once.