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

  1. class TexScaler extends TexModifier
  2.     editinlinenew
  3.     native;
  4.  
  5. cpptext
  6. {
  7.     // UTexModifier interface
  8.     virtual FMatrix* GetMatrix(FLOAT TimeSeconds);
  9. }
  10.  
  11. var Matrix M;
  12. var() float UScale;
  13. var() float VScale;
  14. var() float UOffset;
  15. var() float VOffset;
  16.  
  17. defaultproperties
  18. {
  19.     UScale=1.0
  20.     VScale=1.0
  21. }
  22.