home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Gameplay / Classes / CriticalEventPlus.uc < prev    next >
Text File  |  2003-12-11  |  323b  |  19 lines

  1. class CriticalEventPlus extends LocalMessage;
  2.  
  3. static function float GetOffset(int Switch, float YL, float ClipY )
  4. {
  5.     return (Default.YPos/768.0) * ClipY;
  6. }
  7.  
  8. defaultproperties
  9. {
  10.     bBeep=false
  11.     bFadeMessage=True
  12.     bIsSpecial=True
  13.     bIsUnique=True
  14.     Lifetime=3
  15.  
  16.     DrawColor=(R=0,G=160,B=255,A=255)
  17.     FontSize=1
  18. }
  19.