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

  1. class ConstantMaterial extends RenderedMaterial
  2.     editinlinenew
  3.     abstract
  4.     native;
  5.  
  6. cpptext
  7. {
  8.     //
  9.     // UConstantMaterial interface
  10.     //
  11.     virtual FColor GetColor(FLOAT TimeSeconds) { return FColor(0,0,0,0); }
  12. }