mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
Update the documentation
This commit is contained in:
parent
cf4f602f38
commit
9bfb2c86f8
1 changed files with 11 additions and 0 deletions
11
README.md
11
README.md
|
@ -14,6 +14,7 @@ If you can dream of it, it probably belongs here!
|
||||||
- [`//hollowellipsoid <rx> <ry> <rz> <node_name>`](#hollowellipsoid-rx-ry-rz-node_name)
|
- [`//hollowellipsoid <rx> <ry> <rz> <node_name>`](#hollowellipsoid-rx-ry-rz-node_name)
|
||||||
- [`//torus <major_radius> <minor_radius> <node_name>`](#torus-major_radius-minor_radius-node_name)
|
- [`//torus <major_radius> <minor_radius> <node_name>`](#torus-major_radius-minor_radius-node_name)
|
||||||
- [`//hollowtorus <major_radius> <minor_radius> <node_name>`](#hollowtorus-major_radius-minor_radius-node_name)
|
- [`//hollowtorus <major_radius> <minor_radius> <node_name>`](#hollowtorus-major_radius-minor_radius-node_name)
|
||||||
|
- [`//maze <replace_node> [<seed>]`](#maze-replace_node-seed)
|
||||||
- [`//multi <command_a> <command_b> .....`](#multi-command_a-command_b-command_c-)
|
- [`//multi <command_a> <command_b> .....`](#multi-command_a-command_b-command_c-)
|
||||||
- [`//yy`](#yy)
|
- [`//yy`](#yy)
|
||||||
- [`//nn`](#nn)
|
- [`//nn`](#nn)
|
||||||
|
@ -73,6 +74,16 @@ Creates a hollow torus at position 1 with the radius major and minor radii. Work
|
||||||
//hollowtorus 21 11 stone
|
//hollowtorus 21 11 stone
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### `//maze <replace_node> [<seed>]`
|
||||||
|
Generates a maze using replace_node as the walls and air as the paths. Uses [an algorithm of my own devising](https://starbeamrainbowlabs.com/blog/article.php?article=posts/070-Language-Review-Lua.html). It is guaranteed that you can get from every point to every other point in generated mazes, and there are no loops.
|
||||||
|
|
||||||
|
A seed can optionally be provided, which will cause the same maze to be generated every time (otherwise `os.time()` is used to dynamically set the seed).
|
||||||
|
|
||||||
|
```
|
||||||
|
//maze ice
|
||||||
|
//maze stone 1234
|
||||||
|
```
|
||||||
|
|
||||||
### `//multi <command_a> <command_b> <command_c> .....`
|
### `//multi <command_a> <command_b> <command_c> .....`
|
||||||
Executes multi chat commands in sequence. Intended for _WorldEdit_ commands, but does work with others too. Don't forget a space between commands!
|
Executes multi chat commands in sequence. Intended for _WorldEdit_ commands, but does work with others too. Don't forget a space between commands!
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue