mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-22 20:31:11 +00:00
Background alpha fading.
This commit is contained in:
parent
6efd18ae7f
commit
6807e04768
1 changed files with 6 additions and 0 deletions
|
@ -468,9 +468,15 @@
|
|||
#define ALPHA_FADE_FORE_EX(what, to, duration) \
|
||||
ALPHA_FADE_EX(what, forecolor, 0, to, duration)
|
||||
|
||||
#define ALPHA_FADE_BACK_EX(what, to, duration) \
|
||||
ALPHA_FADE_EX(what, backcolor, 0, to, duration)
|
||||
|
||||
#define DEFAULT_FADEIN_TIME 125
|
||||
|
||||
#define ALPHA_FADE_FORE(what, to) \
|
||||
ALPHA_FADE_FORE_EX(what, to, DEFAULT_FADEIN_TIME)
|
||||
|
||||
#define ALPHA_FADE_BACK(what, to) \
|
||||
ALPHA_FADE_BACK_EX(what, to, DEFAULT_FADEIN_TIME)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue