ILifetCycleHitPoint.cs 383 B

12345678910111213141516
  1. 
  2. using UnityEngine;
  3. namespace UTool.CustomizeTimeLogic.FxLogic.TimeLineEventinterface
  4. {
  5. /// <summary>
  6. /// 受击点
  7. /// </summary>
  8. public interface ILifetCycleHitPoint : ITimeLineEventBasic
  9. {
  10. ILifeCycle IfLifeCycle { get; }
  11. Vector3 Position { get; }
  12. T This<T>();
  13. SpecialDotInfo GetSpecialDotInfo(string specialDotName);
  14. }
  15. }