Uploader Comments (hyperz2006)
Top Comments
-
C# > Java
-
I realy like it. Btw haters be quiet!
1) minecraft is amazing, so what's the Problem hacing a cool clone of it?
2) it is just a terrain with notch' tectures (which is quite awsome!)
3) it will never be as amazing as minecraft, because here he is using 2d Perlin noises,and notch uses 3d Perlin noises.
You can't make things like overhangs with the 2d noise.
And I'm not talking about the biomes yet!
But still...realy good job.it looks amazing.
Video Responses
All Comments (112)
-
Hey That's pretty cool ! I plan to create a multiplayer game using voxel technology. If you are interesting, here is my last video : /watch?v=NsqlU0DCqPM
-
is there a tutorial for this?
-
Your video is popular on Macedonia
-
Better the wolfs is the best mod in minecraft
-
Creative mode is very cool just amagen you doing that mode it's the 2 best
-
I got 1.1 and I did creative mode
-
@Momo5775 Yeah. Plus the fact C++ is slightly more level, although lower level.
-
@DrunkenWaffle I agree. C# -> Windows only, C++ -> Linux, Mac, Windows.
-
@RandomnessProducts You obviously don't know those 2 languages, how they work.
Is it possible to have a look on how you render this, and how you put all those cubes into vertex buffers? I found an example, pointing my on how to use a vertex buffer for every single cube in the map, which makes it impossible for me to draw more than 12 chunks before it goes haywire. When you got about 51k DrawCalls at 32 chunks, I go down to 12 fps. ;<
103150162151163 3 months ago
@103150162151163 You shouldn't use a buffer per cube. That would be madness :p. Use 1 vertex buffer + 1 16 bit index buffer PER CHUNK. In other words: merge all cubes into a single mesh per chunk. That will result in 1 draw call/chunk.
hyperz2006 3 months ago
was this done with instancing?
AnimationSector 4 months ago
@AnimationSector Nope. From my experience HWI would be a lot slower. HWI generally lowers the memory footprint but it's not well suited for this task because it would mean drawing whole blocks whereas this can remove invisible quads.
hyperz2006 4 months ago