+ 5
In Java, we can make Minecraft game. Can you show me how to make a Minecraft game in brief ?
Can you?
2 Respostas
+ 3
Ohh. The JMonkeyEngine is many explanations...
Thank you for the answer Martin Taylor.
I say thank you...
+ 3
First of all learn OpenGL, Minecraft uses it to send commands to the GPU so it could display complex 3d graphics. Everything else can be broken up in to small tasks like storing and rendering the map, you need to create a file format for it, decide how it'll work. Minecraft for example separates the entire map in to chunks so it's easier to render and store. At it's core it just creates a mesh of blocks that can be seen and sends it to the GPU to be rendrered. For a full game you'd need an entity system, and a way those entities or the game could output sound, etc...