-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathSpriteFlasher.cs
79 lines (64 loc) · 1.49 KB
/
SpriteFlasher.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
using UnityEngine;
using System.Collections;
[RequireComponent(typeof(SpriteRenderer))]
public class SpriteFlasher : MonoBehaviour {
public SpriteRenderer sprite;
public Color defaultFlashColor = Color.red;
float lastFlashTime, flashLength;
int flashCounter = 0;
Color originalColor, flashColor;
void Reset()
{
sprite = GetComponent<SpriteRenderer>();
}
public bool IsFlashing
{
get { return flashCounter != 0; }
}
void Update()
{
if (!IsFlashing)
return;
float currentT = Time.time - lastFlashTime / (flashLength / 2f);
bool overPeak = currentT > 1f;
if (overPeak)
currentT = 2f - currentT;
if (overPeak && currentT <= float.Epsilon)
{
if (flashCounter > 0)
flashCounter--;
lastFlashTime = Time.time;
}
Color currentColor = Color.Lerp(originalColor, flashColor, currentT);
sprite.color = currentColor;
}
public void Flash(float flashLength)
{
Flash(defaultFlashColor, flashLength, 1);
}
public void Flash(float flashLength, int loops)
{
Flash(defaultFlashColor, flashLength, loops);
}
public void Flash(Color flashColor, float flashLength)
{
Flash(flashColor, flashLength, 1);
}
public void Flash(Color flashColor, float flashLength, int loops)
{
if (!IsFlashing)
originalColor = sprite.color;
lastFlashTime = Time.time;
this.flashCounter = loops;
this.flashColor = flashColor;
this.flashLength = flashLength;
}
public void StopFlash()
{
if (IsFlashing)
{
sprite.color = originalColor;
}
flashCounter = 0;
}
}