28 lines
360 B
C#
28 lines
360 B
C#
public enum CameraMovementType
|
|
{
|
|
Normal,
|
|
Dynamic,
|
|
Towars,
|
|
}
|
|
public enum CameraMouseInputType
|
|
{
|
|
LeftMouse,
|
|
RightMouse,
|
|
LeftAndRight,
|
|
MouseScroll,
|
|
MobileTouch,
|
|
All,
|
|
}
|
|
public enum CameraOrientation
|
|
{
|
|
Forward,
|
|
Behind,
|
|
Left,
|
|
Right,
|
|
Top,
|
|
LeftForward,
|
|
RightForward,
|
|
LeftBehind,
|
|
RightBehind
|
|
}
|