Posted December 24, 20204 yr Does anyone knows for good article for dimensions in Minecraft (something that will help me in creating my own), and probably some basic terrain generation?
December 24, 20204 yr Which version Edited December 24, 20204 yr 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/
December 25, 20204 yr 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/
December 26, 20204 yr Author When I create my dimension, where I can define biome, terrain, structures generation?
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.