Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SetAlert()

void Terraria.GameContent.ChromaHotkeyPainter.PaintKey.SetAlert ( Color colorBase,
Color colorFlash,
float time,
float flashesPerSecond )
inline

Definition at line 130 of file ChromaHotkeyPainter.cs.

131 {
132 if (time == -1f)
133 {
134 time = 10000f;
135 }
136 foreach (RgbKey rgbKey in _rgbKeys)
137 {
138 rgbKey.SetFlashing(colorBase, colorFlash, time, flashesPerSecond);
139 }
140 }

References Terraria.GameContent.ChromaHotkeyPainter.PaintKey._rgbKeys.