mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
README: Update quick reference
This commit is contained in:
parent
aa3f89c097
commit
d6d11c6b1a
3 changed files with 18 additions and 1 deletions
|
@ -9,7 +9,7 @@ Note to self: See the bottom of this file for the release template text.
|
||||||
- `//multi`: Improve resilience by handling some edge cases
|
- `//multi`: Improve resilience by handling some edge cases
|
||||||
- Add `//srect` (_select rectangle_), `//scol` (_select column_), `//scube` (_select cube_) - thanks, @VorTechnix!
|
- Add `//srect` (_select rectangle_), `//scol` (_select column_), `//scube` (_select cube_) - thanks, @VorTechnix!
|
||||||
- Add `//scloud` (_select point cloud_), `//scentre` (_select centre node(s)_), `//srel` (_select relative_) - thanks, @VorTechnix!
|
- Add `//scloud` (_select point cloud_), `//scentre` (_select centre node(s)_), `//srel` (_select relative_) - thanks, @VorTechnix!
|
||||||
- Significantly refactored backend utility functions
|
- Significantly refactored backend utility functions (more to come in future updates)
|
||||||
|
|
||||||
|
|
||||||
## v1.11: The big data update (25th January 2021)
|
## v1.11: The big data update (25th January 2021)
|
||||||
|
|
|
@ -62,6 +62,9 @@ The detailed explanations have moved! Check them out [here](https://github.com/s
|
||||||
- [`//scol [<axis1> ] <length>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#scol-axis1--length)
|
- [`//scol [<axis1> ] <length>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#scol-axis1--length)
|
||||||
- [`//srect [<axis1> [<axis2>]] <length>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#srect-axis1-axis2-length)
|
- [`//srect [<axis1> [<axis2>]] <length>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#srect-axis1-axis2-length)
|
||||||
- [`//scube [<axis1> [<axis2> [<axis3>]]] <length>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#scube-axis1-axis2-axis3-length)
|
- [`//scube [<axis1> [<axis2> [<axis3>]]] <length>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#scube-axis1-axis2-axis3-length)
|
||||||
|
- [`//scloud <0-6|stop|reset>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#scloud-0-6stopreset)
|
||||||
|
- [`//scentre`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#scentre)
|
||||||
|
- [`//srel <axis1> <length1> [<axis2> <length2> [<axis3> <length3>]]`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#srel-axis1-length1-axis2-length2-axis3-length3)
|
||||||
- [`//sstack`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#sstack)
|
- [`//sstack`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#sstack)
|
||||||
- [`//spush`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#spush)
|
- [`//spush`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#spush)
|
||||||
- [`//spop`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#spop)
|
- [`//spop`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/master/Chat-Command-Reference.md#spop)
|
||||||
|
|
|
@ -61,6 +61,20 @@ function worldeditadditions.is_sapling(id)
|
||||||
return minetest.get_item_group(node_name, "sapling") ~= 0
|
return minetest.get_item_group(node_name, "sapling") ~= 0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
-- ███████ █████ ██████ ██ ██ ███ ██ ██████
|
||||||
|
-- ██ ██ ██ ██ ██ ██ ██ ████ ██ ██
|
||||||
|
-- ███████ ███████ ██████ ██ ██ ██ ██ ██ ██ ███
|
||||||
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||||
|
-- ███████ ██ ██ ██ ███████ ██ ██ ████ ██████
|
||||||
|
--
|
||||||
|
-- █████ ██ ██ █████ ███████ ███████ ███████
|
||||||
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||||
|
-- ███████ ██ ██ ███████ ███████ █████ ███████
|
||||||
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||||
|
-- ██ ██ ███████ ██ ██ ██ ███████ ███████ ███████
|
||||||
|
|
||||||
|
|
||||||
local sapling_aliases = {}
|
local sapling_aliases = {}
|
||||||
function worldeditadditions.register_sapling_alias(sapling_node_name, alias)
|
function worldeditadditions.register_sapling_alias(sapling_node_name, alias)
|
||||||
if sapling_aliases[sapling_node_name] ~= nil then
|
if sapling_aliases[sapling_node_name] ~= nil then
|
||||||
|
|
Loading…
Reference in a new issue