#Unity

@tomwor@tomwor.com

As a #Unity old-timer, I often miss when Unity introduces new functionality, like the ObjectPool class that seems to around for years now. Totally missed this one. Good bye homemade solution, I guess. 🤷‍♂️ #gamedev

@tomwor@tomwor.com

I added a public property "debugLog" to all of my ScriptableObject events, to see when listeners are registered and the event is fired. Great for insights. #unity #gamedev

@tomwor@tomwor.com

You can use ScriptableObjects as an event system. Define event assets (GameEvent) and listeners (GameEventListener) to decouple systems. This modular approach keeps dependencies low and scales beautifully. #Unity #UnityTips #GameDev