home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Engine / Classes / SubActionFade.uc < prev    next >
Text File  |  2003-06-23  |  489b  |  18 lines

  1. //=============================================================================
  2. // SubActionFade:
  3. //
  4. // Fades to/from a color
  5. //=============================================================================
  6. class SubActionFade extends MatSubAction
  7.     native;
  8.  
  9. var(Fade)    color    FadeColor;        // The color to use for the fade
  10. var(Fade)    bool    bFadeOut;        // If TRUE, the screen is fading out (towards the color)
  11.  
  12. defaultproperties
  13. {
  14.     Icon=SubActionFade
  15.     Desc="Fade"
  16.     bFadeOut=true
  17. }
  18.