The GetCameraSettingList
function returns a list of all available settings for the given camera. If no camera name is given, then the first connected camera is taken. The returned setting names can be used as arguments for GetCameraSetting, SetCameraSetting, and GetCameraSettingValues functions.
array: GetCameraSettingList([string cameraName = ""])
var result = GetCameraSettingList(); // returns an array with all settings for the first connected camera found, // or false if no connected camera was found. var result = GetCameraSettingList('GoPro Hero 4'); // returns an array with all settings for the GoPro Hero 4 camera, // or false if the camera is not connected.