Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

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.