diff options
author | sfan5 <sfan5@live.de> | 2016-07-04 19:49:23 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2016-07-04 19:49:23 +0200 |
commit | f72abdb766d7808c4c731ec224c90f1f1fb395c6 (patch) | |
tree | 9563c90e1662232ee8002769ce8c0780504fbdbf /ChatCommands.md | |
parent | b23e92921c4e6f380767ca4be82608bb3de66483 (diff) | |
parent | e18525d8c983eb78c8f7f2fa2425cede21fc8289 (diff) |
Merge remote-tracking branch 'tmp/cuboidmanip'
Diffstat (limited to 'ChatCommands.md')
-rw-r--r-- | ChatCommands.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ChatCommands.md b/ChatCommands.md index b11aaf0..b26e894 100644 --- a/ChatCommands.md +++ b/ChatCommands.md @@ -386,3 +386,38 @@ This mode can be left with `//mtschemprob finish`. `//mtschemprob get` will disp Clears all objects within the WorldEdit region.
//clearobjects
+
+### `//shift x/y/z/?/up/down/left/right/front/back [+|-]<amount>`
+
+Shifts the selection area by `[+|-]<amount>` without touching its contents. The shifting axis can be absolute (`x/y/z`) or
+relative (`up/down/left/right/front/back`).
+
+ //shift left 5
+
+### `//expand [+|-]x/y/z/?/up/down/left/right/front/back <amount> [reverse-amount]`
+
+Expands the selection by `<amount>` in the selected absolute or relative axis. If specified, the selection can be expanded in the
+opposite direction over the same axis by `[reverse-amount]`.
+
+ //expand right 7 5
+
+### `//contract [+|-]x/y/z/?/up/down/left/right/front/back <amount> [reverse-amount]`
+
+Contracts the selection by `<amount>` in the selected absolute or relative axis. If specified, the selection can be contracted in the
+opposite direction over the same axis by `[reverse-amount]`.
+
+ //expand right 7 5
+
+### `//outset [hv] <amount>`
+
+Expands the selection in all directions by `<amount>`. If specified, the selection can be expanded horizontally in the x and z axes `[h]`
+or vertically in the y axis `[v]`.
+
+ //outset v 5
+
+### `//inset [hv] <amount>`
+
+Contracts the selection in all directions by `<amount>`. If specified, the selection can be contracted horizontally in the x and z axes `[h]`
+or vertically in the y axis `[v]`.
+
+ //outset v 5
\ No newline at end of file |