mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
Document new commands
This commit is contained in:
parent
429beb2e52
commit
227d11b82a
1 changed files with 23 additions and 0 deletions
23
README.md
23
README.md
|
@ -2,6 +2,12 @@
|
||||||
> Extra tools and commands to extend WorldEdit for Minetest
|
> Extra tools and commands to extend WorldEdit for Minetest
|
||||||
|
|
||||||
## Current commands:
|
## Current commands:
|
||||||
|
**Quick Reference:**
|
||||||
|
|
||||||
|
- `//floodfill [<replace_node> [<radius>]]`
|
||||||
|
- `//overlay <node_name>`
|
||||||
|
- `//ellipsoid <rx> <ry> <rz> <node_name>`
|
||||||
|
- `//hollowellipsoid <rx> <ry> <rz> <node_name>`
|
||||||
|
|
||||||
### `//floodfill [<replace_node> [<radius>]]`
|
### `//floodfill [<replace_node> [<radius>]]`
|
||||||
Floods all connected nodes of the same type starting at _pos1_ with <replace_node> (which defaults to `water_source`), in a sphere with a radius of <radius> (which defaults to 50).
|
Floods all connected nodes of the same type starting at _pos1_ with <replace_node> (which defaults to `water_source`), in a sphere with a radius of <radius> (which defaults to 50).
|
||||||
|
@ -24,3 +30,20 @@ Note that all-air columns are skipped - so if you experience issues with it not
|
||||||
//overlay glass
|
//overlay glass
|
||||||
//overlay grass_with_dirt
|
//overlay grass_with_dirt
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### `//ellipsoid <rx> <ry> <rz> <node_name>`
|
||||||
|
Creates a solid ellipsoid at position 1 with the radius `(rx, ry, rz)`.
|
||||||
|
|
||||||
|
```
|
||||||
|
//ellipsoid 10 5 15 ice
|
||||||
|
//ellipsoid 3 5 10 dirt
|
||||||
|
//ellipsoid 20 10 40 air
|
||||||
|
```
|
||||||
|
|
||||||
|
### `//hollowellipsoid <rx> <ry> <rz> <node_name>`
|
||||||
|
Creates a hollow ellipsoid at position 1 with the radius `(rx, ry, rz)`. Works the same way as `//ellipsoid` does.
|
||||||
|
|
||||||
|
```
|
||||||
|
//hollowellipsoid 10 5 15 glass
|
||||||
|
//hollowellipsoid 21 11 41 stone
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue