summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-05-26 19:27:38 +0800
committerchai <chaifix@163.com>2021-05-26 19:27:38 +0800
commit117938ecaece43c584ee74723a36d8dc2f2a4ae1 (patch)
treecbfe7c6d25bc633163a22b5e1016cc1d5487236c /Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
parentb9fe2ce418667724c3e3fdedd228ff2691900bbe (diff)
+Tween Animation
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs')
-rw-r--r--Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs b/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
new file mode 100644
index 0000000..c30cf78
--- /dev/null
+++ b/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace TweenAnimation
+{
+ [Serializable]
+ public class TweenState
+ {
+ public string name;
+ public TweenAnimation animation;
+ }
+
+ public class TweenController : MonoBehaviour
+ {
+ public List<TweenState> animations;
+
+ // Use this for initialization
+ void Start () {
+
+ }
+
+ public void PlayAnimation(string name)
+ {
+
+ }
+
+ }
+
+} \ No newline at end of file