Hi there!
Can someone tell me how the execution order works in these cases:
- 2 game objects with the Start function. Which one runs first?
- Does a parent game object’s start function execute before the start functions in the children?
Thanks!
edit: While im asking, I forgot a detail abou C#. If I have have a function a() and b()
{
a();
b();
}
Does b start before a is finished executing. If I recall correctly, it doesn’t. B waits untill A is finished. Or am I remembering incorrectly?