RandomChaos 3D Engine with C++
Loading...
1,695
Uploader Comments (NemoKradXNA)
see all
All Comments (2)
-
it isnt fun if its too easy, I had gamemaker, but it bored me out right from the beginning, doing everything from scratch is much more satisfying when its done...
Loading...
Dark GDK makes C++ coding much easier. A terrain like this can be generated easily in Dark GDK.
spartasoldier300 2 years ago
OK, but the difference is that I had to write the code to create the window, the code to create the graphics device, the code for the camera, the code for the terrain class that holds the vertex stream, the vertex stream has the normals, texture weights and tangents calculated in code (tangents and texture weights not used in this clip), all based off a texture file that is in black and white for the terrain height map that is read by the terrain class.
NemoKradXNA 2 years ago
I also had to write the blinn-phong shader to render the terrains vertex stream.
In short, I think you will learn more and gain more in depth skills this way. Even in XNA using C#, I may not have to create the device or the window but I need to understand how the grahpics pipeline works and how to write my own shaders (saying that you could have used the BasicEffect in XNA for this, but I didn't)
Just because it is easier does not always mean it is better...
NemoKradXNA 2 years ago