Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Very nice art style and satisfying gameplay/sound design. Could use a walking animation, and sometimes rabbits don't attack you until you attack them?

Yep, unfortunately the rabbits have a problem with the way they’re coded: they’re supposed to activate slightly offset to each other based on what ID number they are. This was supposed to be for performance, so that the game wouldn’t lag from a lot of enemies all activating at once. But I didn’t realize that their IDs would increment including previous floors’ now-deleted enemies, so later floor enemies take a really long time to activate. Ex: a rabbit with an ID of 50 would activate 1.5 seconds after starting the floor, but a rabbit with an ID of 400 (which would be around floor 6) would take 12 whole seconds. I had a failsafe where walking near an enemy would also activate it, but I made the range too small…