Antura.Minigames.Balloons.BalloonsLetterController.Drop_Coroutine C# (CSharp) 메소드

Drop_Coroutine() 개인적인 메소드

private Drop_Coroutine ( float delay ) : IEnumerator
delay float
리턴 IEnumerator
        private IEnumerator Drop_Coroutine(float delay)
        {
            yield return new WaitForSeconds(delay);
            BalloonsConfiguration.Instance.Context.GetAudioManager().PlaySound(Sfx.LetterAngry);
            //drop = true;
            var dropSpeed = 2500f;
            body.AddForce(Vector3.down * dropSpeed);
        }