FsAcquiredState

This enum is used to describe the different possible add-on camera status.

 

Syntax
enum FsAcquiredState : int
{
    FS_ACQUIRED_STATE_NOT_ACQUIRED = 0,
    FS_ACQUIRED_STATE_ACQUIRED,
    FS_ACQUIRED_STATE_ACQUIRED_BY_OTHER,
    FS_ACQUIRED_STATE_USER_DISABLED,
    FS_ACQUIRED_STATE_COUNT
};

 

Members
Enum Member Description
FS_ACQUIRED_STATE_NOT_ACQUIRED The add-on camera is free to be acquired.
FS_ACQUIRED_STATE_ACQUIRED The add-on camera is owned by the client and can be set.
FS_ACQUIRED_STATE_ACQUIRED_BY_OTHER The add-on camera is owned by another client.
FS_ACQUIRED_STATE_USER_DISABLED The camera API is disabled by the user in the simulation options, and cameras cannot be acquired.
FS_ACQUIRED_STATE_COUNT Not used.

 

Remarks

N/A

 

Related Topics

  1. WebAssembly
  2. Camera API

0/255