Jump to content

Creating dimension


SaltBeard

Recommended Posts

Which version

Edited by GenElectrovise
Grammar

How to ask a good coding question: https://stackoverflow.com/help/how-to-ask

Give logs, code, desired effects, and actual effects. Be thorough or we can't help you. Don't post code without putting it in a code block (the <> button on the post - select "C-type Language"): syntax highlighting makes everything easier, and it keeps the post tidy.

 

My own mod, Magiks Most Evile: GitHub (https://github.com/GenElectrovise/MagiksMostEvile) Wiki (https://magiksmostevile.fandom.com/wiki/Magiks_Most_Evile_Wiki)

Edit your own signature at https://www.minecraftforge.net/forum/settings/signature/

Link to comment
Share on other sites

I haven't tried this but given that there are no other responses, I would start in a few places:

 

ForgeRegistries.DIMENSIONS provides registration for dimensions through DeferredRegister.

Search for the classes World and DimensionType - how does vanilla do it?

 

Code to change dimension (i.e. through a portal) is:

/**
   * Convenience method to change the dimension of the given entity.
   * 
   * @param entityIn
   * @param worldIn
   */
  private void changeDimension(Entity entityIn, World worldIn, RegistryKey<World> registryKey) {

    // Get the world of that key
    ServerWorld serverworld = ((ServerWorld) worldIn).getServer().getWorld(registryKey);

    // Change
    if (serverworld == null) {
      return;
    }

    entityIn.changeDimension(serverworld, new NoPortalTeleporter(serverworld));
  }

... so World is evidently important.

 

I'd also look into that RegistryKey business.

 

Afraid I don't have a lot of other advice :(

How to ask a good coding question: https://stackoverflow.com/help/how-to-ask

Give logs, code, desired effects, and actual effects. Be thorough or we can't help you. Don't post code without putting it in a code block (the <> button on the post - select "C-type Language"): syntax highlighting makes everything easier, and it keeps the post tidy.

 

My own mod, Magiks Most Evile: GitHub (https://github.com/GenElectrovise/MagiksMostEvile) Wiki (https://magiksmostevile.fandom.com/wiki/Magiks_Most_Evile_Wiki)

Edit your own signature at https://www.minecraftforge.net/forum/settings/signature/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.