Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Very good concept, i like how we can see all of the simulated ball. Good potential to improve the game, maybe had some sound effects but for a 48 hours game it's very good.


I found two problem :

- first one, I blocked a simulated ball in a infinite loop with a fan so i needed to restart the room

- second one, sometimes ball take stupid decision by going in a path who's block by an obstacle (maybe it try to go as nearest as possible to the hole without thinking about blocked path)


Overall, it's a very good game (ones of my favorite so far), very enjoyable and fun !

ohhhh boy, figuring out how to have the ball decide which path to take took me so long. Between bugs, faulty assumptions and non-deterministic physics, there where a lot of headaches involved. The final implementation uses checkpoints to gauge which direction is desirable at any given point and the balls physics isn't actually simulated when the ball actually takes its shot, it just follows the path of the shot it decided to take.

The most obvious place the checkpoint system has issues is the level with two possible paths. There's actually only 1 checkpoint stretched between the two paths, so if you block the bottom path from the right side the ball will reach the checkpoint via the bottom path and wont want to go around.

The ideal solution would probably be to use a path finding algorithm to determine the shortest path to the hole (taking the size of the ball into account), it would also have draw backs, but would probably be a big improvement. Anyway, hindsight is 20/20. I'm glad you enjoyed it!