-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathSpriteFrameAnimator.cs
150 lines (125 loc) · 3.9 KB
/
SpriteFrameAnimator.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
using UnityEngine;
using System.Collections;
namespace UnityToolbag
{
public enum SpriteFrameAnimationResetOption
{
DontReset,
ResetIfNew,
ResetAlways
}
[AddComponentMenu("UnityToolbag/Sprite Frame Animator")]
public class SpriteFrameAnimator : MonoBehaviour
{
private SpriteFrameAnimation _currentAnimation;
private int _frame;
private float _timer;
[SerializeField]
private SpriteRenderer _spriteRenderer;
[SerializeField]
private SpriteFrameAnimation[] _animations;
[SerializeField]
private string _startAnimation = string.Empty;
[SerializeField]
private bool _playOnStart = false;
public bool isAnimationComplete
{
get
{
if (_currentAnimation == null) {
return true;
}
if (_currentAnimation.loop) {
return false;
}
return _frame == _currentAnimation.frames.Length - 1 &&
_timer == _currentAnimation.frameDuration;
}
}
public void Play(string name)
{
Play(name, SpriteFrameAnimationResetOption.ResetIfNew);
}
public void Play(string name, SpriteFrameAnimationResetOption resetOption)
{
SpriteFrameAnimation newAnimation = null;
foreach (var anim in _animations){
if (anim.name == name) {
newAnimation = anim;
break;
}
}
if (newAnimation == null) {
_currentAnimation = null;
return;
}
switch (resetOption) {
case SpriteFrameAnimationResetOption.ResetIfNew: {
if (newAnimation != _currentAnimation) {
_frame = 0;
_timer = 0;
}
break;
}
case SpriteFrameAnimationResetOption.ResetAlways: {
_frame = 0;
_timer = 0;
break;
}
default: {
break;
}
}
_currentAnimation = newAnimation;
if (_currentAnimation != null) {
UpdateWithFrameData();
}
}
public void Stop()
{
_currentAnimation = null;
}
public void Stop(int stopOnIndex)
{
if (_currentAnimation != null) {
_frame = stopOnIndex;
UpdateWithFrameData();
_currentAnimation = null;
}
}
void Awake()
{
_spriteRenderer = GetComponent<SpriteRenderer>();
}
void Start()
{
if (_playOnStart) {
Play(_startAnimation);
}
}
void Update()
{
if (_currentAnimation != null) {
if (!isAnimationComplete) {
_timer += Time.deltaTime * 1000f;
}
if (_timer >= _currentAnimation.frameDuration) {
_timer -= _currentAnimation.frameDuration;
if (!isAnimationComplete || _currentAnimation.loop) {
if (_currentAnimation.loop) {
_frame = (_frame + 1) % _currentAnimation.frames.Length;
}
else if (_frame < _currentAnimation.frames.Length) {
_frame++;
}
UpdateWithFrameData();
}
}
}
}
void UpdateWithFrameData()
{
_spriteRenderer.sprite = _currentAnimation.frames[_frame];
}
}
}