AudioAutoStop.cs 841 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using UnityEngine;
  2. using System.Collections;
  3. namespace CommonAIClient.Unity.Utils
  4. {
  5. public class AudioAutoStop : MonoBehaviour
  6. {
  7. public DefaultAudio Auido;
  8. public float Duration;
  9. public GameObject TraceTarget;
  10. private bool mStoped;
  11. // Update is called once per frame
  12. void Update()
  13. {
  14. if (!mStoped)
  15. {
  16. this.Duration -= Time.deltaTime;
  17. if (this.Duration <= 0)
  18. {
  19. mStoped = true;
  20. this.Auido.Stop();
  21. Destroy(this);
  22. return;
  23. }
  24. if (TraceTarget != null)
  25. {
  26. transform.position = TraceTarget.Position();
  27. }
  28. }
  29. }
  30. }
  31. }