In the course, I’m noticing that most of the time a method needs to be called on a specific component, they’re just using GetComponent().Method();
Isn’t it more efficient to just cache them in the start event so that we’re not constantly grabbing the component? Especially if you’re calling the methods quite frequently? Doesn’t it add up to performance improvement as well?