Submissions from 2020-03-31 to 2020-04-01 (3 total)

Begin collecting information on how to create a platform shooter.

Today I went on and got to a point where I instantiate each hexagon independently. Such a feature lets me build the game grid not as a sheet of sprites, but as a grid of objects instead. This ultimately leads to the ability to store the grid data (technically, a level) as a 2d array. Even though serializing the latter is not a priority, now it has become a feasible possibility.
The new tile sprite didn't inspire me enough. Next time I'm gonna think it through and replace it with something different. Till then, good night! 🌖

A couple headaches later, I finished the collision. After that was done, I implemented a super simple enemy health bar and finalised various other parts of the enemy class.

Tomorrow, I'm gonna implement some stuff in specific enemies that was left undone, try to come up with a player design (visually) and then, if there's time, go back and check code and do some debugging.