@kepsert Thank you for playing!
> Controls were very responsive. Besides that it was mostly very basic though!
I totally agree, as it is it's basically an application of a beginners tutorial.
(The first parts of this one in particular: youtu.be/nAh_Kx5Zh5Q )
I'm more at home using Clickteam Fusion, but I've been wanting to try Godot for some time, it's my first game using it. I liked it a lot, but I guess I underestimated how long it would take to figure out Godot's little surprises.
I had to spend way too much time trying to understand how its system of Nodes and Scenes and Signals work in practice (it's very good btw), so I had no time to actually tweak the gameplay.
I also thought that Godot was able to use SVGs natively, but it turns out that it uses an importer to convert it to raster only once at import time. My scaled images looked terrible, so I had to re-export them from Inkscape, taking me yet more time.
> I would’ve loved to see a little check around the sound effect so it doesn’t stack when you pick up to scores at once.
I was even planning on making some music with Bosca Ceoil, but in the end I almost had no sound at all =P
The game over sound effect worked, but the enemy destruction one didn't play for some reason.
I then realized that since I had implemented that sound node as a subnode of each enemy, that sound player was being deleted with the enemy, so there was no time for the sound effect to play.
I changed the code to darken the enemy while the sound was playing, and to erase it when the sound effect finished...
Maybe I could have used some global variable as a lock and set the volume to zero if there's already something playing.
(mutex mute?)
> I was also somewhat expecting every formula I picked up to change the player block a little, forcing me to pick up another equation next, but in the end I was mostly just colour coding to score points haha.
hmm, interesting.
Do you mean each formula would change you to a different color? The (intentional?) problem is that you wouldn't be able to chain collect formulas of the same color, but maybe that would add another dimension to the gameplay.
Or maybe you mean each color would have a different effect? Like blue makes you larger but faster, yellow smaller but slower, green brings you one step closer to medium.
At first my idea was to make you shoot at the blocks, and the bullet's color would depend on your mode when you shot it, but I simplified it to be able to finish on time...
> Can definitely see the game mechanic going places if fleshed out some more!
Thanks! It's inspired by Hellfire for the Sega Genesis, where you have a button to change your color, and each color mode shoots at different directions.