rott/kf_sources/Engine/Classes/SubActionFade.uc
2026-07-14 20:27:09 +07:00

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
}