Components in Unity
- we can attach components to Game Objects to affect their state and behavior
- we can write custom scripts to attach as components
- a script is a class, but when the script is attached as a component, the game object gets an instance of the class(an object)
- we can attach scripts to multiple game objects to give them the same behavior









