Update README with new commands

This commit is contained in:
Starbeamrainbowlabs 2018-06-10 13:49:09 +01:00
parent f3745dc6ba
commit a5b07ba2ff
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -10,6 +10,8 @@ If you can dream of it, it probably belongs here!
- `//overlay <node_name>`
- `//ellipsoid <rx> <ry> <rz> <node_name>`
- `//hollowellipsoid <rx> <ry> <rz> <node_name>`
- `//torus <major_radius> <minor_radius> <node_name>`
- `//hollowtorus <major_radius> <minor_radius> <node_name>`
### `//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).
@ -50,16 +52,15 @@ Creates a hollow ellipsoid at position 1 with the radius `(rx, ry, rz)`. Works t
//hollowellipsoid 21 11 41 stone
```
### `//torus <major_radius > <minor_radius> <node_name>`
### `//torus <major_radius> <minor_radius> <node_name>`
Creates a solid torus at position 1 with the specified major and minor radii. The major radius is the distance from the centre of the torus to the centre of the circle bit, and the minor radius is the radius of the circle bit.
```
//torus 10 5 15 ice
//torus 3 5 10 dirt
//torus 20 10 40 air
//torus 15 5 stone
//torus 5 3 meselamp
```
### `//hollowtorus <rx> <ry> <rz> <node_name>`
### `//hollowtorus <major_radius> <minor_radius> <node_name>`
Creates a hollow torus at position 1 with the radius `(rx, ry, rz)`. Works the same way as `//torus` does.
```