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
}
}