EffectAutoDestroy.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using CommonAIClient.Unity.Battle;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace CommonAIClient.Unity.Utils
  5. {
  6. /// <summary>
  7. /// 需要保证其他地方不会处理对象de删除操作
  8. /// </summary>
  9. public class EffectAutoDestroy : MonoBehaviour
  10. {
  11. public AssetObjectExt aoeHandler;
  12. public float duration;
  13. List<ParticleSystem> mParticles = new List<ParticleSystem>();
  14. List<Animation> mAnimations = new List<Animation>();
  15. List<Animator> mAnimators = new List<Animator>();
  16. bool mDestroyed;
  17. void Start()
  18. {
  19. if (Extensions.NearlyZero(duration))
  20. {
  21. duration = 3f;
  22. gameObject.GetComponentsInChildren<ParticleSystem>(mParticles);
  23. gameObject.GetComponentsInChildren<Animation>(mAnimations);
  24. gameObject.GetComponentsInChildren<Animator>(mAnimators);
  25. }
  26. }
  27. void Update()
  28. {
  29. if (!mDestroyed)
  30. {
  31. duration -= Time.deltaTime;
  32. if (duration <= 0)
  33. {
  34. DoDestroy();
  35. }
  36. TryDestroy();
  37. }
  38. }
  39. public void DoDestroy()
  40. {
  41. if (!mDestroyed && aoeHandler != null)
  42. {
  43. mDestroyed = true;
  44. DestroyImmediate(this);
  45. BattleFactroy.Instance.GameObjectAdapter.Unload(aoeHandler);
  46. }
  47. }
  48. void TryDestroy()
  49. {
  50. if (mParticles == null)
  51. {
  52. Debug.LogError("");
  53. }
  54. foreach (var elem in mParticles)
  55. {
  56. if (elem.isPlaying || elem.isPaused)
  57. return;
  58. }
  59. foreach (var elem in mAnimations)
  60. {
  61. if (elem.isPlaying)
  62. return;
  63. }
  64. foreach (var elem in mAnimators)
  65. {
  66. if (elem.GetAnimatorTransitionInfo(0).normalizedTime < 1f)
  67. return;
  68. }
  69. DoDestroy();
  70. }
  71. }
  72. }