summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenModule.cs
blob: 3d4968a96e985f477466baf3ee4031c6cb6a673c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace TweenAnimation
{
    [Serializable]
    public abstract class TweenModule
    {
        public string description;

        public bool enabled;

#if UNITY_EDITOR
        public abstract string name { get; }

        public virtual string tooltip { get { return "Tween Module " + name; } }

        public virtual void OnGUI()
        {
        }
#endif 

    }
}