On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

This game has a lot of polish and charm!  The puzzles were well thought out, but I'm not really a huge fan of the bat in level 7.  I get why he's there, but I felt it got in the way of the puzzle a bit (also sometimes you can't see where he is due to the camera, so it can be hard to predict where he will be at times).  Regardless, that's a super minor gripe for a game that was very fun and enjoyable!  Fantastic job!  

Thanks!! I'm glad you liked it :)

And yes, everyone talks about that lvl 7 lol, I'll probably adjust it a bit somehow after this evaluation week.

It's a great level honestly, I just get salty when I think i have it and then the bat decides to chomp me!   :D  Is he using A* pathfinding?  JDev (he made True Colors for the jam), has a game with a bat and a skull that chases you using A*, and your bat movement really reminds me of his skull lol.   

(1 edit)

Yes, I believe pathfinding is actually using the A* algorithm. But what I really used is the Navigation2D tools that's part of the available Godot engine classes, so for me the algorithm used for pathfinding was abstracted by Godot, which made it super easy to implement. Here's the documentation on that:

https://www.youtube.com/watch?v=Ad6Us73smNs
https://docs.godotengine.org/es/stable/classes/class_astar2d.html
https://docs.godotengine.org/es/stable/classes/class_navigation2d.html

Nice!  There are some aspects of Godot that i really wish Unity had.  In particular, I love the way Godot handles input management.  It's simple and intuitive.