Skip to content

Instantly share code, notes, and snippets.

@Hexodus
Last active April 14, 2017 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hexodus/6be1f19108a2b872b5f8a1f1250a730b to your computer and use it in GitHub Desktop.
Save Hexodus/6be1f19108a2b872b5f8a1f1250a730b to your computer and use it in GitHub Desktop.
While Unit doesen't offer a LateStart() this is to be use meanwhile
void Start ()
{
StartCoroutine (LateStart());
}
IEnumerator LateStart()
{
yield return new WaitForEndOfFrame ();
// Do your magic here!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment