Posted September 14, 20214 yr I was wondering if there were any guides on what each method of the chunk generator was meant to return. I'm making a fixed chunk generator with nothing random, so it should be pretty easy to create, but I don't understand what methods like getBaseColumn() are meant to return. I'm unsure what the order of the array in the NoiseColumn means. Edited October 11, 20213 yr by DavidQF555
September 14, 20214 yr The method is for Structures, no idea for what exactly, you can return a array with zero size, you can look here for an example
September 14, 20214 yr Author 1 hour ago, Luis_ST said: The method is for Structures, no idea for what exactly, you can return a array with zero size, you can look here for an example If I am not creating structures, then they are not needed? Also what are min, max, and base height and gen depth? Many of these just all seem really similar and generic to me.
September 14, 20214 yr Yes if you not generating Structures you can return an empty array. min is the min y height (default is in 1.17 0), max is the max y height, base height controls the base Structure height, genDepth no idea
September 14, 20214 yr Author https://pastebin.com/J8EC8Za7 This is my custom chunk generator. It is just a constant generator that takes in Settings which includes a shape I want to generate. I'm working with dynamic dimensions which is why some parts might seem strange. The issue is that when I go to the dimension with that chunk generator, I am just stuck in a loading screen forever with no errors in console or anything. I tried replacing the chunk generator of the dimension to a flat, vanilla one, and that caused the loading to work, so it should be an issue with my chunk generator. I'm just not sure as to what issue it is. Edit: Nevermind, it's just an infinite loop because I used offset() wrong for blockpos. Edited September 15, 20214 yr by DavidQF555
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.