Skip to content

Instantly share code, notes, and snippets.

@inoook
Created June 13, 2012 09:34
Show Gist options
  • Save inoook/2923076 to your computer and use it in GitHub Desktop.
Save inoook/2923076 to your computer and use it in GitHub Desktop.
Unity3d での実行順
void Awake () {
//Debug.Log("Awake");
}
void OnEnable () {
//Debug.Log("OnEnable");
}
// Use this for initialization
void Start () {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment