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

namespace TweenAnimation
{
    [Serializable]
    public class TweenAlpha : TweenModule
    {
        public float alpha;

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

#endif
    }
}