Te damos la solución a esta impedimento, al menos eso creemos. Si sigues con dudas puedes dejarlo en el apartado de preguntas y sin dudar
Ejemplo 1: cómo hacer que una línea de código espere la unidad
//In the example below the script will right "Hello" and 3 seconds later write "Goodbye" in the consoleStart()//Call the function Example()StartCoroutine(Example());Example()
Debug.Log("Hello");//wait 3 secondsyieldreturnnewWaitForSeconds(3);
Debug.Log("Goodbye");
Ejemplo 2: esperar una segunda unidad
voidStart()//Start the coroutine we define below named ExampleCoroutine.StartCoroutine(ExampleCoroutine());IEnumeratorExampleCoroutine()//Print the time of when the function is first called.
Debug.Log("Started Coroutine at timestamp : "+ Time.time);//yield on a new YieldInstruction that waits for 5 seconds.yieldreturnnewWaitForSeconds(5);//After we have waited 5 seconds print the time again.
Debug.Log("Finished Coroutine at timestamp : "+ Time.time);
Tienes la opción de ayudar nuestra publicación escribiendo un comentario y valorándolo te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)