summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/TweenAlpha.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/TweenAlpha.cs')
-rw-r--r--Assets/UI_Extension/Scripts/Animation/Tween/TweenAlpha.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Assets/UI_Extension/Scripts/Animation/Tween/TweenAlpha.cs b/Assets/UI_Extension/Scripts/Animation/Tween/TweenAlpha.cs
new file mode 100644
index 0000000..4576673
--- /dev/null
+++ b/Assets/UI_Extension/Scripts/Animation/Tween/TweenAlpha.cs
@@ -0,0 +1,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
+ }
+} \ No newline at end of file