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

  1. class TexPanner extends TexModifier
  2.     editinlinenew
  3.     native;
  4.  
  5. cpptext
  6. {
  7.     // UTexModifier interface
  8.     virtual FMatrix* GetMatrix(FLOAT TimeSeconds);
  9. }
  10.  
  11. var() rotator PanDirection;
  12. var() float PanRate;
  13. var Matrix M;
  14.  
  15. defaultproperties
  16. {
  17.     PanRate=0.1
  18.     PanDirection=(Yaw=0)
  19. }
  20.