-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnimationSetting.cs
84 lines (68 loc) · 2.43 KB
/
AnimationSetting.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
using DG.Tweening;
using Sirenix.OdinInspector;
using UnityEngine;
namespace TinyMatter.Core {
[CreateAssetMenu(menuName = "Animation/Setting")]
public class AnimationSetting : ScriptableObject {
[BoxGroup("Timing")] public float duration = 0.3f;
[BoxGroup("Timing")] public bool isSpeed = false;
[BoxGroup("Timing")] public float delay = 0f;
[BoxGroup("Easing")] public Ease easing = Ease.InOutQuad;
[ShowIf("ShowEasingExtras")] [BoxGroup("Easing")]
public float overshootOrAmplitude = 1.3f;
[ShowIf("ShowEasingExtras")] [BoxGroup("Easing")]
public float period = 0f;
private bool ShowEasingExtras() {
if (customCurve != null) {
return false;
}
bool show = false;
switch (easing) {
case Ease.InBack:
show = true;
break;
case Ease.OutBack:
show = true;
break;
case Ease.InOutBack:
show = true;
break;
case Ease.InElastic:
show = true;
break;
case Ease.OutElastic:
show = true;
break;
case Ease.InOutElastic:
show = true;
break;
case Ease.Flash:
show = true;
break;
case Ease.InFlash:
show = true;
break;
case Ease.OutFlash:
show = true;
break;
case Ease.InOutFlash:
show = true;
break;
}
return show;
}
[BoxGroup("Easing")] public AnimationSettingCurve customCurve;
}
public static class AnimationExtension {
public static T SetEase<T>(this T t, AnimationSetting animationSetting) where T : Tween
{
if ((object) t == null || !t.IsActive())
return t;
//custom curve
if (animationSetting.customCurve != null) {
return t.SetEase(animationSetting.customCurve.curve);
}
return t.SetEase(animationSetting.easing, animationSetting.overshootOrAmplitude, animationSetting.period);
}
}
}