EffectTime.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. using System.Collections;
  2. using UnityEngine;
  3. using System;
  4. using Sirenix.Utilities;
  5. public class EffectTime : MonoBehaviour
  6. {
  7. [Tooltip("持续时间(-1=无限)")]
  8. public float duration = -1;
  9. [Tooltip("延迟")]
  10. public float delay;
  11. [Tooltip("播放速度")]
  12. public float speed = 1;
  13. private Transform mTransform;
  14. private ParticleSystem[] childParticle;
  15. private Animation childAnimation;
  16. private void Awake()
  17. {
  18. this.mTransform = this.transform;
  19. this.childParticle = GetComponentsInChildren<ParticleSystem>();
  20. this.childAnimation = GetComponentInChildren<Animation>();
  21. }
  22. private void OnEnable()
  23. {
  24. if(speed != 1)
  25. {
  26. SetPlaySpeed(speed);
  27. }
  28. if(delay > 0)
  29. {
  30. ShowChildren(false);
  31. StartCoroutine(DelayShow());
  32. }
  33. else
  34. {
  35. ShowChildren(true);
  36. }
  37. if (childAnimation != null)
  38. {
  39. foreach (var ob in childAnimation)
  40. {
  41. var state = ob as AnimationState;
  42. if (state != null)
  43. {
  44. Debug.Log($"state name:{state.name}");
  45. }
  46. }
  47. }
  48. }
  49. private IEnumerator DelayShow()
  50. {
  51. yield return new WaitForSeconds(delay);
  52. ShowChildren(true);
  53. }
  54. //保存动画和特效的原始播放速度
  55. private Hashtable mAniSpeeds = new Hashtable();
  56. private ArrayList mEffSpeeds = new ArrayList();
  57. public void SetPlaySpeed(float _speed, string aniName = "")
  58. {
  59. if (_speed < 0f) _speed = 1f;
  60. speed = _speed;
  61. if (!aniName.IsNullOrWhitespace() && childAnimation != null)
  62. {
  63. var state = childAnimation[aniName];
  64. if (state != null)
  65. {
  66. float orginSpeed = 1.0f;
  67. if (mAniSpeeds.ContainsKey(aniName))
  68. {
  69. orginSpeed = (float)mAniSpeeds[aniName];
  70. }
  71. else
  72. {
  73. orginSpeed = state.speed;
  74. mAniSpeeds[aniName] = orginSpeed;
  75. }
  76. state.speed = orginSpeed * speed;
  77. }
  78. }
  79. if (childParticle != null)
  80. {
  81. for (int i = 0; i < childParticle.Length; i++)
  82. {
  83. var main = childParticle[i].main;
  84. float orginSpeed;
  85. if (mEffSpeeds.Count > i)
  86. {
  87. orginSpeed = (float)mEffSpeeds[i];
  88. }
  89. else
  90. {
  91. orginSpeed = main.simulationSpeed;
  92. mEffSpeeds.Add(orginSpeed);
  93. }
  94. main.simulationSpeed = orginSpeed * speed;
  95. }
  96. }
  97. }
  98. void ShowChildren(bool show)
  99. {
  100. var num = mTransform.childCount;
  101. for (int i = num - 1; i >= 0; i--)
  102. {
  103. mTransform.GetChild(i).gameObject.SetActive(show);
  104. }
  105. }
  106. }