Sunday, October 13, 2013

Unity Waits, Delays, and Timers

This Unity Tutorial will show you 3 different methods to make a timer and be able to delay or wait between functions in your Unity3D scripts


Time Breakdown
  • 0:30 - Setting up our variable
  • 1:50 - Invoke method
  • 4:40 - IEnumerator method
  • 8:20 - Update method with Time.deltaTime
  • 11:40 - Outro, thanks for watching :D
Check out the videos above to hear the explanation and see the code in action
  1. /*/
  2. * Script by Devin Curry
  3. * www.Devination.com
  4. * www.youtube.com/user/curryboy001
  5. * Please like and subscribe if you found my tutorials helpful :D
  6. * Twitter: https://twitter.com/Devination3D
  7. /*/
  8. using UnityEngine;
  9. using System.Collections;
  10.  
  11. public class WaitExamples : MonoBehaviour
  12. {
  13. private float timer = 1f;
  14. public int secs2Wait = 3;
  15. public int[] totalSec = new int[3];
  16. void Start ()
  17. {
  18. InvokeRepeating("TimerInvoke", 1, 1);
  19. StartCoroutine(TimerEnumerator());
  20. }
  21. void TimerInvoke()
  22. {
  23. if(totalSec[0] < secs2Wait)
  24. totalSec[0]++;
  25. else
  26. CancelInvoke("TimerInvoke");
  27. }
  28. IEnumerator TimerEnumerator()
  29. {
  30. for(int ii =0; ii < secs2Wait; ii++)
  31. {
  32. yield return new WaitForSeconds(1);
  33. totalSec[1]++;
  34. }
  35. }
  36. void Update ()
  37. {
  38. TimerUpdate();
  39. }
  40. void TimerUpdate()
  41. {
  42. if(totalSec[2] < secs2Wait)
  43. {
  44. if(timer > 0)
  45. timer -= Time.deltaTime;
  46. else if (timer <= 0)
  47. {
  48. totalSec[2]++;
  49. timer = 1f;
  50. }
  51. }
  52. }
  53. }