diff options
author | chai <chaifix@163.com> | 2021-09-01 19:29:48 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-09-01 19:29:48 +0800 |
commit | 8c519185b0053daa23c5c5978d47baf77c1391b0 (patch) | |
tree | 72c149df2e9691db3e079c92fb03219c9ddc8e9e /Assets/Scripts/Unit/Events/EventGame_TimeScale.cs | |
parent | 21278085eae9c069fcb5cf61fbcdb6ca18f15b69 (diff) |
*action tool的帧范围
Diffstat (limited to 'Assets/Scripts/Unit/Events/EventGame_TimeScale.cs')
-rw-r--r-- | Assets/Scripts/Unit/Events/EventGame_TimeScale.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Assets/Scripts/Unit/Events/EventGame_TimeScale.cs b/Assets/Scripts/Unit/Events/EventGame_TimeScale.cs new file mode 100644 index 00000000..df393a6b --- /dev/null +++ b/Assets/Scripts/Unit/Events/EventGame_TimeScale.cs @@ -0,0 +1,12 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class EventGame_TimeScale : AnimationEventBase
+{
+ public override TimelineEventProxy.EEventType type { get { return TimelineEventProxy.EEventType.EventGame_TimeScale; } }
+ public override string shortName { get { return "T"; } }
+
+ public AnimationCurve curve;
+
+}
\ No newline at end of file |