summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-05-31 09:43:09 +0800
committerchai <chaifix@163.com>2021-05-31 09:43:09 +0800
commit2683c04adcaff44f9504248d2c983cd86bd4b3ad (patch)
tree1ab3e0ac80b3ace9a8cb1a1f897dbb73d2612d52 /Assets/UI_Extension/Scripts/Animation/Tween/Demo/TweenEventHandlerTest.cs
parent293def05f43c55fce6e90d6b1907c9d9fc63facc (diff)
*tween
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);
+ }
+
+}