home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Level Design
/
GLDesign.bin
/
Software
/
UnrealEngine2Runtime
/
UE2Runtime-22262001_Demo.exe
/
Engine
/
Classes
/
ActionMoveCamera.uc
< prev
next >
Wrap
Text File
|
2003-06-23
|
446b
|
19 lines
//=============================================================================
// ActionMoveCamera:
//
// Moves the camera to a specified interpolation point.
//=============================================================================
class ActionMoveCamera extends MatAction
native;
var(Path) config enum EPathStyle
{
PATHSTYLE_Linear,
PATHSTYLE_Bezier,
} PathStyle;
defaultproperties
{
PathStyle=PATHSTYLE_Linear
}