The Unity Manual describes the order in which the Script functions are called. However, I was wondering if there were any rules regarding the order in which the GameObjects themselves are considered in Unity.
GameObjects are basically the nodes of Unity's scene graph and (assuming the scene itself was the root node) they form a tree. I was wondering if that tree structure imposed any rules on the order in which GameObjects are considered.
As already mentioned, the manual describes that Awake()
is always called before Start()
which is always called before the first call to Update()
and so on. However, these relations in time are (mostly) given in scope of a single script on a single GameObject. I want to know if there is also a rule stating the order in which Start()
(or any other method) is called on all the GameObjects in the scene.
Specifically I wanted to know:
- Are parents always considered before their children are?
- Are siblings considered in the same order they are displayed in the scene graph?
- Is Script Execution Order enforced only in scope of a single GameObject, or does it consider all GameObjects?