summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-05-28 20:00:48 +0800
committerchai <chaifix@163.com>2021-05-28 20:00:48 +0800
commit26e4dc3a35d9c778684388de1af8b3f288fe627d (patch)
treee791e224c2be0dcda69dda2211d213f946b3b2cc /Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
parent3bf862ea76d349c2aec1f71656dd6f41a82650e0 (diff)
*Tween
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs')
-rw-r--r--Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs b/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
index e636f23..20d2876 100644
--- a/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
+++ b/Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs
@@ -2,6 +2,7 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
+using UnityEngine.Events;
namespace TweenAnimation
{
@@ -14,12 +15,9 @@ namespace TweenAnimation
public class TweenController : MonoBehaviour
{
- public AnimationCurve curve;
-
public List<TweenState> animations;
- // Use this for initialization
- void Start () {
+ void Start () {
}
@@ -28,6 +26,11 @@ namespace TweenAnimation
}
+ private void Update()
+ {
+
+ }
+
}
} \ No newline at end of file