mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Ore: Add ore sheet column height range selection
Modders are now able to select the range of ore column height, and the midpoint at which they 'grow' starting from. This commit adds three new parameters for the 'sheet' ore type: column_height_min, column_height_max, and column_midpoint_factor. clust_size is now deprecated for this ore type.
This commit is contained in:
parent
1d6911676e
commit
beba969413
4 changed files with 37 additions and 15 deletions
|
@ -937,8 +937,19 @@ int ModApiMapgen::l_register_ore(lua_State *L)
|
|||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
if (oretype == ORE_VEIN) {
|
||||
//// Get type-specific parameters
|
||||
if (oretype == ORE_SHEET) {
|
||||
OreSheet *oresheet = (OreSheet *)ore;
|
||||
|
||||
oresheet->column_height_min = getintfield_default(L, index,
|
||||
"column_height_min", 1);
|
||||
oresheet->column_height_max = getintfield_default(L, index,
|
||||
"column_height_max", ore->clust_size);
|
||||
oresheet->column_midpoint_factor = getfloatfield_default(L, index,
|
||||
"column_midpoint_factor", 0.5f);
|
||||
} else if (oretype == ORE_VEIN) {
|
||||
OreVein *orevein = (OreVein *)ore;
|
||||
|
||||
orevein->random_factor = getfloatfield_default(L, index,
|
||||
"random_factor", 1.f);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue