summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenAlpha.cs
blob: 457667342e365e609a4cc6a358f4b179af7da115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace TweenAnimation
{
    public class TweenAlpha : TweenModule
    {


#if UNITY_EDITOR
        public override string name { get { return "Alpha"; } }

        public override void OnGUI()
        {

        }
#endif
    }
}