19 lines
446 B
Ucode
19 lines
446 B
Ucode
//=============================================================================
|
|
// 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
|
|
}
|