MonoBehaviour.md (362B)
1 # Mono Behaviour 2 3 CS 331 W12 L3 4 5 **Definition:** Monobehaviour is the default inherited class for scripts which contains start and update. 6 7 Each script contains code for a class that inherits from monobehaviour. 8 9 The update function is used to control the [GameLoop](GameLoop.md) 10 11 The start function is called a singular time when the object is instantiated.