If you were ever looking for a way to write more event driven code in Unity you probably found that it’s not so easy at least not with some very basic classes like Transforms.
This tool will help you to add those events directly to Unity classes. It’s highly customisable and you can specify targets yourself, just a few examples
Transform position / rotation / scale would be handled with
The tool works well. Thanks for making it available.
In some UI code, I was setting the anchorPosition of a ScrollRect’s Content object to 0,0, but a few frames later, the anchorPosition was different. I couldn’t figure out what was causing it and suspected it was something in Unity’s UI layout code.
It turns out Unity’s ScrollRect component was changing the anchorPosition in ScrollRect.LateUpdate(). Without this tool, it would have been difficult or impossible to determine the cause.