This enum is used by the camera functions to get/set bitmask options for the add-on camera.

 

Syntax
enum FsCameraFlag : int
{
    FS_CAMERA_FLAG_NONE         = 0x00,
    FS_CAMERA_FLAG_INTERACTION  = 0x01,
    FS_CAMERA_FLAG_ABOVE_GROUND = 0x02
};

 

Members
Enum MemberDescription
FS_CAMERA_FLAG_NONEThere are no flags set for the add-on camera.
FS_CAMERA_FLAG_INTERACTIONThe add-on camera will permit interactions.
FS_CAMERA_FLAG_ABOVE_GROUNDThe add-on camera altitude will always be set above the ground (including any buildings).

 

Remarks

N/A