summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Unit/TimelineEvent.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-07-07 18:47:37 +0800
committerchai <chaifix@163.com>2021-07-07 18:47:37 +0800
commita13f10139d33264fc9ebc5a15c75faf16fc7757e (patch)
tree9d6c40a21fc873c6e25ff4bbdeba663a73927427 /Assets/Scripts/Unit/TimelineEvent.cs
parent1bb4971cffac3851a119f16e815bfe42abfc2df6 (diff)
+Action Tool
Diffstat (limited to 'Assets/Scripts/Unit/TimelineEvent.cs')
-rw-r--r--Assets/Scripts/Unit/TimelineEvent.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/Assets/Scripts/Unit/TimelineEvent.cs b/Assets/Scripts/Unit/TimelineEvent.cs
new file mode 100644
index 00000000..86c6a124
--- /dev/null
+++ b/Assets/Scripts/Unit/TimelineEvent.cs
@@ -0,0 +1,38 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+// 动画帧事件
+[DisallowMultipleComponent]
+public partial class TimelineEvent: MonoBehaviour
+{
+ public enum EEventType
+ {
+ EventCameraZoom, // 相机聚焦
+ EventCameraShake, // 相机晃动
+ EventCameraBlur, // 相机模糊
+ EventCameraWhiteOut, // 相机白屏
+ EventAfterImage, // 角色残像
+ EventMeshFade, // 角色透明度
+ EventMeshGloss, // 角色泛光
+ EventProjectile, // 发射体
+ EventEffect, // 特效
+ EventSound, // 音效
+ EventUIDrift, //
+ }
+
+ void EventEffect(EventEffect effect)
+ {
+ }
+
+ void EventAfterImage(EventAfterImage afterImage)
+ {
+
+ }
+
+ void EventMeshFade(EventMeshFade meshFade)
+ {
+
+ }
+
+} \ No newline at end of file