which of the following methods is used to pass input value to a coroutine
Answers
Answered by
0
StartCoroutine function is used to set a coroutine running.
There are two ways to use StartCoroutine. They are:
i. function StartCoroutine (methodName : String, value : object = null)
With this Coroutine takes one value object.
ii. function StartCoroutine (routine : IEnumerator)
This is useful for multiple parameters.
Similar questions