Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

Nice game! Interesting approach to the theme. The graphics are nice, but the pixel art size differs a lot, which makes it look a little weird and makes some sprites look out of place. I've found some bugs however. I played this on stream and managed to speedrun this in 00:01:13.02 by skipping all the enemies. Also, you can shoot two bullets at once if I hold two buttons. The shooting is a little annoying actually, because I can't aim while walking, maybe you should have implemented a system of shooting with arrow keys (like in The Binding Of Isaac) or with the mouse.

Thanks for this feedback! I wanted to make it so that you couldn't skip the enemies by having a wall that would only come down once all of the enemies were gone, but wasn't sure how to "sense" for enemy presence. With the shooting, we have had a lot of critique and I will be sure to fix this on our next game, this was our first shooter, so we were just kind of going in blind. Thanks for playing the game on stream!

(+1)

To do the enemies and wall thing, you would need to keep track of how many enemies there are in each room. Then when an enemy dies you just have to decrease the enemy counter and then you can just check if it is equal 0. Also a little Tip, from what I've seen when decompiling the game (just doing it for fun), you can use a single enemy class and then just derive from it to create different behaviour for each one.

Ok cool, this is really helpful. I will try to implement some of this in future game. Thanks!