IEnumerator DelayedTransition(float delay)
    {
        yield return(new WaitForSeconds(delay));

        introTransition.DoNextTransition(0);
    }