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

Always interesting to read these posts about Scramble, Wiebo. I had a similar problem with GMS 2 when I wrote my first game using that. I had lots of separate objects all off doing their own thing and no dedicated game handler object to keep track of them all. It caused all sorts of wild problems with controlling instances of objects to update them with information from other objects to try and keep everything working correctly, even for something simple like a Pause mode. 

I learnt a lot from doing a bit of research before I started the next game as it's so much simpler to avoid future problems when you make sure you know what you're doing first.

Good luck with what you're doing.

Thanks Xerra.

Yes, some things can be avoided by doing a bit of research beforehand. The Godot scene tree concept does introduce some unique challenges that I've never experienced before because I never used such a system to keep track of game objects. The issues seem to slowly creep up on you as the size of the game grows.

Choices made in the scene tree structure can really impact you. I'm getting better at it and I'm just going along with it. Sure, it takes a bit more time to make progress, but that's fine by me.