summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs')
-rw-r--r--Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs b/Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs
new file mode 100644
index 0000000..ff7874a
--- /dev/null
+++ b/Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs
@@ -0,0 +1,18 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using TweenAnimation;
+
+public class TweenEventHandlerTest : MonoBehaviour , ITweenEventHandler
+{
+ public void OnTweenEvent(string eventName)
+ {
+ }
+
+ [ExecuteInEditMode]
+ public void RecvEvent(string content)
+ {
+ Debug.Log(content);
+ }
+
+}