Methods: The Poké Ball of Code
Methods are essentially a form of modularity; similarly to a Poké Ball (Your Method) holding a Pokémon (Your Code). There are default methods of class MonoBehavior that are used, as well as methods that can be created or more specific methods that have specific functions.
The big ones you’re going to see as soon as you create a C# script in Unity are:
If you were curious, Unity defaults the methods privacy or “ability to be accessed” to “private” unless defined other-wise. That’s why the method that I had created has a privacy definition, unlike the ones that are shown once you create a C# script.
If I attach this to an empty in our Scene, what should happen is depicted, in order from top to bottom, on the left image:
We’re gonna continue our dive into understanding how to better use these methods but I think we’ve got it so far.