I’ve noticed in some of the videos we use a transform variable without running the below in the Startup() Method:
transform = GetComponent();
All other Components have to be stored as variables in the Startup() method before they are available for access so I just curious to know why transform is different and if there’s other components that work this way?
Thanks!