Help needed on Structure Spawn condition datapack for other mods
YuliaS11 opened this issue ยท 0 comments
I am trying to change IDAS, integrated villages, spore and Goety so the structures generated would fit on whichever flat pieces of Tectonic's insane terrain.
Take
{
"type": "lithostitched:set_structure_spawn_condition",
"structures": "#ivp:small_village",
"spawn_condition": {
"type": "lithostitched:grid",
"radius": 40,
"distance_between_points": 20,
"condition": {
"type": "lithostitched:not",
"condition": {
"type": "lithostitched:height_filter",
"range_type": "heightmap_relative",
"heightmap": "WORLD_SURFACE_WG",
"permitted_range": [
-10,
10
]
}
},
"allowed_count": 0
}
}
What does permitted range do here? Is radius meant to be the distance from center to corners of XZ bounds of a structure? What of Distance Between Points? Why is this bigger for small villages but only 16 for standard villages? With Integrated Village's massive and expansive structures, how do I find the appropriate radius?