Write-Up: Assignment06
A downloadable game
1. Discuss the advantages of having human-readable asset files
I think the most important two advantages of having human-readable asset files are good for debug and future changes. Especially after a while, if the game developer wants to modify the file, a good human-readable file will be very necessary.
2. Geometry files
return
{
VertexArray =
{
{0,0,0},
{1.0,1.0,0},
{1.0,0,0},
{0,1.0,0},
},
IndexArray =
{
0, 1, 2,
0, 3, 1,
},
}
I decided to do this way, because I think the file is very easy to understand and clean enough to read. I tired to add x, y, z separately for VertexArray, but I found that is not necessary. This way is already easy to understand.
3. Game Screenshot
4. Game debug
Leave a comment
Log in with itch.io to leave a comment.