I have a script “abc” that inherits MonoBehaviour. In that script, I have an Awake() that executes fine.
I then have another script “def” that inherits “abc”. In that script I have an Update() and a Start(). The Update() executes fine, but the Start() does not.
Is there a reason this is the case, or is something going wrong?
Assuming you declared void Start() in both classes …
The link will tell you that when the parent and child class has declared the same function, you need to add keywords “virtual” and “override” to make sure instances of the child will call the child’s implementation of a function and not the parents.