Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseAwake is called when the script instance is being loaded.
Awake is used to initialize any variables or game state before the game starts.
Awake is called only once during the lifetime of the script instance.
Awake is called after all objects are initialized so you can safely speak to other objects or query them using for example GameObject.FindWithTag.
Each GameObject's Awake is called in a random order between objects. Because of this, you should use Awake to set up references between scripts, and use Start to pass any information back and forth.
Awake is always called before any Start
functions. This allows you to order initialization of scripts.
Awake can not act as a coroutine.
Note: Use Awake instead of the constructor for initialization, as the serialized state of the component is undefined at construction time.
Awake is called once, just like the constructor.
using UnityEngine;
public class ExampleClass : MonoBehaviour { private GameObject target;
void Awake() { target = GameObject.FindWithTag("Player"); } }
An inactive GameObject can be activated when GameObject.SetActive is called on it.
The following two scripts work together. Two GameObjects called Cube1 and Cube2 are used. Example1.cs is the script for Cube1. The script is marked as inactive using the Inspector top-left button. This means that Cube1 is hidden. Cube2 is marked as active. However, Cube1 is a public GameObject for Cube2. The Example2 script can activate Cube1 and cause it to execute the Awake function in the Example1.cs script .
using UnityEngine;
// Make sure that Cube1 is assigned this script and is inactive at the start of the game.
public class Example1 : MonoBehaviour { void Awake() { Debug.Log("Awake"); }
void Start() { Debug.Log("Example1"); }
void Update() { if (Input.GetKeyDown("b")) { print("b key was pressed"); } } }
Example2. This causes Awake in Example1 to be called. The Space key is used to perform this:
using UnityEngine;
public class Example2 : MonoBehaviour { // GO has Example1 script assigned to it so is Cube1 public GameObject GO;
void Start() { Debug.Log("Example2"); }
// allow Cube1 to activated just once private bool activateGO = true;
void Update() { if (activateGO == true) { if (Input.GetKeyDown("space")) { Debug.Log("space key was pressed"); GO.SetActive(true); activateGO = false; } } } }
Awake cannot be a co-routine.
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thanks for helping to make the Unity documentation better!