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

  1. //=============================================================================
  2. // ActionMoveCamera:
  3. //
  4. // Moves the camera to a specified interpolation point.
  5. //=============================================================================
  6. class ActionMoveCamera extends MatAction
  7.     native;
  8.  
  9. var(Path) config enum EPathStyle
  10. {
  11.     PATHSTYLE_Linear,
  12.     PATHSTYLE_Bezier,
  13. } PathStyle;
  14.  
  15. defaultproperties
  16. {
  17.     PathStyle=PATHSTYLE_Linear
  18. }
  19.