예제 #1
0
    IEnumerator FontPositioning()
    {
        while (true)
        {
            yield return(null);

            elapstime          += 1 / 60f;
            transform.position += new Vector3(0, 1 / 90f, 0);
            if (elapstime >= 2)
            {
                battle_uimanager.Labelpool_Push(this.gameObject);
                break;
            }
        }
    }