Is there a way to call a method (or really just run any code) for a specific built-in component (in this case, the UI Text component) at its start?
I want to run specific code on all instances of Text components when they’re initialized. I could just create a new Text class that extends the original Text with my functionality, but I already have a LOT of Text components all over my UI and replacing each and every one of them would be a pain.
Thanks!