diff options
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs')
-rw-r--r-- | Assets/UI_Extension/Scripts/Animation/Tween/TweenController.cs | 11 |
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 |