Change3DTopoTimeLineEvent.cs 665 B

123456789101112131415161718192021222324252627282930
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using GameFramework;
  4. using GameFramework.Event;
  5. using UnityEngine;
  6. public class Change3DTopoTimeLineEvent : GameEventArgs
  7. {
  8. public static readonly int EventId = typeof(Change3DTopoTimeLineEvent).GetHashCode();
  9. public override int Id
  10. {
  11. get
  12. {
  13. return EventId;
  14. }
  15. }
  16. public int type = 0;
  17. public static Change3DTopoTimeLineEvent Create(int _type)
  18. {
  19. Change3DTopoTimeLineEvent args = ReferencePool.Acquire<Change3DTopoTimeLineEvent>();
  20. args.type = _type;
  21. return args;
  22. }
  23. public override void Clear()
  24. {
  25. }
  26. }