Antura.Minigames.Balloons.BalloonsLetterController.Drop_Coroutine C# (CSharp) Method

Drop_Coroutine() private method

private Drop_Coroutine ( float delay ) : IEnumerator
delay float
return 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);
        }