Skip to content

[Feature]: JSON / RemoteCall configΒ #8

@edshPC

Description

@edshPC

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:

  1. Create a json config file containing simple dimensions:
{
    "dimensions": {
        "Dimension Name": {
            "seed": 12345678,
            "generator_type": "Overworld"
        }
    }
}
  1. 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions