18 lines
489 B
Ucode
18 lines
489 B
Ucode
//=============================================================================
|
|
// SubActionFade:
|
|
//
|
|
// Fades to/from a color
|
|
//=============================================================================
|
|
class SubActionFade extends MatSubAction
|
|
native;
|
|
|
|
var(Fade) color FadeColor; // The color to use for the fade
|
|
var(Fade) bool bFadeOut; // If TRUE, the screen is fading out (towards the color)
|
|
|
|
defaultproperties
|
|
{
|
|
Icon=SubActionFade
|
|
Desc="Fade"
|
|
bFadeOut=true
|
|
}
|