-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathSpriteOverbright.cs
106 lines (87 loc) · 2.29 KB
/
SpriteOverbright.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
using UnityEngine;
using System.Collections;
[ExecuteInEditMode, RequireComponent(typeof(SpriteRenderer))]
public class SpriteOverbright : MonoBehaviour {
public SpriteRenderer sprite;
public Color spriteColor = Color.white;
[Range(1f, 4f)]
public float intensity = 1f;
public Color defaultFlashColor = Color.red;
[Range(1f, 4f)]
public float defaultFlashIntensity = 1f;
public float defaultFlashTime = 1f;
float lastFlashTime, flashLength;
int flashCounter = 0;
Color originalColor, flashColor;
float originalIntensity, flashIntensity;
void Reset()
{
sprite = GetComponent<SpriteRenderer>();
}
#region Flashing API
public bool IsFlashing
{
get { return flashCounter != 0; }
}
public void FlashIntensity(float flashLength, float flashIntensity, int loops)
{
FlashColor(flashLength, spriteColor, flashIntensity, loops);
}
public void FlashColor(float flashLength, Color flashColor, float flashIntensity, int loops)
{
if (!IsFlashing)
{
originalColor = spriteColor;
originalIntensity = intensity;
}
lastFlashTime = Time.time;
this.flashCounter = loops;
this.flashColor = flashColor;
this.flashLength = flashLength;
this.flashIntensity = Mathf.Clamp(flashIntensity, 1f, 4f);
}
public void StopFlash()
{
if (IsFlashing)
{
sprite.color = originalColor;
intensity = originalIntensity;
}
flashCounter = 0;
}
#endregion
void Update () {
Color updateColor = spriteColor;
float mulBy = intensity / 4f;
if (IsFlashing)
{
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;
}
updateColor = Color.Lerp(originalColor, flashColor, currentT);
mulBy = Mathf.Lerp(originalIntensity, flashIntensity, currentT) / 4f;
}
updateColor.r *= mulBy;
updateColor.g *= mulBy;
updateColor.b *= mulBy;
sprite.color = updateColor;
}
//void OnGUI()
//{
// if (GUILayout.Button("Once"))
// Flash(1f, Color.white, 4f, 1);
// if (GUILayout.Button("Thrice"))
// Flash(1f, Color.white, 4f, 3);
// if (GUILayout.Button("Loop"))
// Flash(1f, Color.white, 4f, -1);
// if (GUILayout.Button("Stop"))
// StopFlash();
//}
}