Is your feature request related to a problem? Please describe.
Now you have to create and compile native C++ plugin for creating a simple dimension. It will be good to have some simplier api without building a cpp plugin, cause mostly it doesnt require that much fine tuning as cpp plugin provides
Describe the solution you'd like
I have 2 possible ways to achive this:
- Create a json config file containing simple dimensions:
{
"dimensions": {
"Dimension Name": {
"seed": 12345678,
"generator_type": "Overworld"
}
}
}
- Export APIs to LegacyRemoteCall if it is loaded:
const createDimension = ll.import("MoreDimensions", "createDimension");
createDimension("Dimension Name", 12345678, "Overworld");
Describe alternatives you've considered
No response
Additional context
No response
Is your feature request related to a problem? Please describe.
Now you have to create and compile native C++ plugin for creating a simple dimension. It will be good to have some simplier api without building a cpp plugin, cause mostly it doesnt require that much fine tuning as cpp plugin provides
Describe the solution you'd like
I have 2 possible ways to achive this:
{ "dimensions": { "Dimension Name": { "seed": 12345678, "generator_type": "Overworld" } } }Describe alternatives you've considered
No response
Additional context
No response