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 AnimationCurve curve; public List animations; // Use this for initialization void Start () { } public void PlayAnimation(string name) { } } }