are you working on something right now??
or maybe can you finish the Jungle Biome first.
or maybe can you finish the Jungle Biome first.
Some semi-random thoughts on terrain generation
|
are you working on something right now??
or maybe can you finish the Jungle Biome first.
06-20-2012, 03:29 AM
Yes, there are. I need (someone? to make a tool that would count the number of ore blocks in an entire world saved in MCA, then compare vanilla's numbers to MCServer's, and adjust accordingly.
06-20-2012, 03:48 AM
Quote:adjust accordingly...through settable variables in world.ini, please ^_^
07-02-2012, 01:17 AM
xoft can you also make a finisher for swamp biomes for lily pads?
07-02-2012, 04:19 AM
It can be done, but I don't feel like it right now. I think this is too easy. Therefore I'm saving this task for if there's someone who wants to join the project and is looking for an easy task to get acquainted with the source code.
07-07-2012, 10:44 PM
when you are back can you make the transmision between biomes a bit smoother in the terrain hight??
07-12-2012, 04:17 AM
i just tested some ideas i had and it worked pretty well if you make the beach biome bellow the sea level you get smaller beaches instead of the desert like beaches
07-13-2012, 06:12 AM
I found out why the jungle trees are so slow-generating. It's because they're huge, and the algorithm was O(N^2) due to checking blocks for duplicates. Without checking, the generator runs fast again, but we get the "leaves overwrite logs" problem. I'll need to figure something out against this.
Also, I've notices that some of the jungle trees grow in thin air. No idea what's going on there yet. It seems to happen only at biome transitions, especially jungle-ocean edge.
07-13-2012, 06:27 AM
i think it is becouse i did at some point :
int Height = 7 + (a_Noise.IntNoise3DInt(a_BlockX + 5 * a_Seq, a_BlockY, a_BlockZ + 5 * a_Seq) / 5) % 3; i hoped that the small trees would not generate in the big trees but they still do |
« Next Oldest | Next Newest »
|