Skip to main content

The Power of Pride Bundle 2026 — $10 PWYC Edition
On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(2 edits) (+1)

Haha very cute game. If anything you can discover everything by day 5 so I would have enjoyed it if there was more seeds to find. Would be interesting to know how the score works as well.

Not a big "bug" really but I noticed that when you move the mouse over the seeds on the side UI very fast, the panel may not show their info even though it had registered the mouse events. It happens because the mouse_entered and mouse_exited signals fire in the same frame and sometimes the mouse_exited event listener will happen after the mouse_entered one.  Since you're using Godot, I thought I would share one simple way to fix this problem which is that one can connect the mouse_entered signal to a listener with the CONNECT_DEFERRED flag, which will make the mouse_entered event listener always fire at the end of the frame, thus always fire after the mouse_exited signal and will eliminate this little bug.

Other than that, it's a well made entry. Good job!

(+1)

Thank you so much for taking the time to write this down! The hover thing really bothered me but it seemed like I could only come up with ways to make it even worse. Just tried out CONNECT_DEFERRED and that fixed it 🙏. I'm gonna tattoo it on my forehead so I never forget in the future, and update the game as soon as the jam is over!

The scoring system is pretty straightforward, each plant (except for the 3 starting plants) have a value, based on how 'hard' they are to unlock. Sprouts of those plants are half that value. Empty plots give some points as well. The final score just adds up whatever you have in your garden at day 10!

(+1)

Haha you’re welcome! I made some assumptions on how you implemented your game but it looked similar to mine. I had the same bug so I’m glad my debugging efforts has helped more than one person 😂