diff options
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/TweenModule_RectSize.cs')
-rw-r--r-- | Assets/UI_Extension/Scripts/Animation/Tween/TweenModule_RectSize.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Assets/UI_Extension/Scripts/Animation/Tween/TweenModule_RectSize.cs b/Assets/UI_Extension/Scripts/Animation/Tween/TweenModule_RectSize.cs new file mode 100644 index 0000000..03aa454 --- /dev/null +++ b/Assets/UI_Extension/Scripts/Animation/Tween/TweenModule_RectSize.cs @@ -0,0 +1,22 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+namespace TweenAnimation
+{
+
+ public class TweenRectSize : TweenModule
+ {
+ public override string name
+ {
+ get
+ {
+ return "RectTransform Size";
+ }
+ }
+
+ protected override void SetValue(float time)
+ {
+ throw new System.NotImplementedException();
+ }
+ }
+}
\ No newline at end of file |