mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Implement grouped mode for find_nodes_in_area (#9888)
plus general improvements to find_node_* functions
This commit is contained in:
parent
88ffd64124
commit
4b4513a67d
4 changed files with 123 additions and 82 deletions
|
@ -768,12 +768,15 @@ Call these functions only at load time!
|
|||
* `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
|
||||
* `search_center` is an optional boolean (default: `false`)
|
||||
If true `pos` is also checked for the nodes
|
||||
* `minetest.find_nodes_in_area(pos1, pos2, nodenames)`: returns a list of
|
||||
positions.
|
||||
* `minetest.find_nodes_in_area(pos1, pos2, nodenames, [grouped])`
|
||||
* `pos1` and `pos2` are the min and max positions of the area to search.
|
||||
* `nodenames`: e.g. `{"ignore", "group:tree"}` or `"default:dirt"`
|
||||
* First return value: Table with all node positions
|
||||
* Second return value: Table with the count of each node with the node name
|
||||
as index.
|
||||
* If `grouped` is true the return value is a table indexed by node name
|
||||
which contains lists of positions.
|
||||
* If `grouped` is false or absent the return values are as follows:
|
||||
first value: Table with all node positions
|
||||
second value: Table with the count of each node with the node name
|
||||
as index
|
||||
* Area volume is limited to 4,096,000 nodes
|
||||
* `minetest.find_nodes_in_area_under_air(pos1, pos2, nodenames)`: returns a
|
||||
list of positions.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue