Recall & Review
beginner
What is the purpose of the Awake method in Unity?
Awake is called when the script instance is being loaded. It is used to initialize variables or states before the game starts. It runs even if the script component is disabled.
Click to reveal answer
beginner
When is the Start method called in Unity?
Start is called before the first frame update only if the script component is enabled. It is used to set up things that depend on other objects being initialized.
Click to reveal answer
beginner
Which method runs first: Awake or Start?
Awake runs first, immediately when the object is loaded. Start runs later, just before the first frame update and only if the script is enabled.
Click to reveal answer
intermediate
Can Awake be used to reference other components on the same GameObject?
Yes, Awake is a good place to get references to other components on the same GameObject because all components are loaded by then.
Click to reveal answer
intermediate
Why might you choose Start over Awake for initialization?
Start is better when you need to access other GameObjects or scripts that might not be ready during Awake. Start runs after all Awake calls are done.
Click to reveal answer
Which Unity method is called first when a scene loads?
✗ Incorrect
Awake is called immediately when the object is loaded, before Start.
When is the Start method called?
✗ Incorrect
Start runs after all Awake calls and before the first frame update, only if the script is enabled.
Can Awake be used to initialize variables even if the script is disabled?
✗ Incorrect
Awake runs regardless of whether the script is enabled or disabled.
Which method is better to use if you need to access other GameObjects that might not be ready in Awake?
✗ Incorrect
Start runs after all Awake calls, so other GameObjects are more likely to be initialized.
What happens if a script is disabled? Which method still runs?
✗ Incorrect
Awake runs even if the script is disabled, but Start only runs if the script is enabled.
Explain the difference between Awake and Start methods in Unity and when each is called.
Think about when the game objects are ready and script states.
You got /5 concepts.
Describe a situation where you would use Awake instead of Start for initialization in Unity.
Consider what is available immediately when the object loads.
You got /4 concepts.