namespace Unity.XR.PICO.TOBSupport
{
public enum CustomizeSettingsTabEnum
{
///
/// Hide the WIFI tag. Applicable to MerlinE, NEO3, PICO4, and Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_WLAN = 0,
///
/// Hide the controller tag. Applicable to MerlinE, NEO3, and PICO4 devices.
///
CUSTOMIZE_SETTINGS_TAB_CONTROLLER = 1,
///
/// Hide the Bluetooth tag. Applicable to MerlinE, NEO3, PICO4, and Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_BLUETOOTH = 2,
///
/// Hide the display tag. Applicable to MerlinE, NEO3, and PICO4 devices.
///
CUSTOMIZE_SETTINGS_TAB_DISPLAY = 3,
///
/// Hide the lab tag. Applicable to MerlinE, NEO3, and PICO4 devices.
///
CUSTOMIZE_SETTINGS_TAB_LAB = 4,
///
/// Hide the lock screen entry. Applicable to MerlinE, NEO3, PICO4, and Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_GENERAL_LOCKSCREEN = 5,
///
/// Hide the factory reset entry. Applicable to MerlinE, NEO3, PICO4, and Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_GENERAL_FACTORY_RESET = 6,
///
/// Account settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_ACCOUNTS = 7,
///
/// System upgrade settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_SYSTEM_UPDATE = 8,
///
/// Interaction settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_INTERACTION = 9,
///
/// Pupil distance settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_PUPIL_DISTANCE = 10,
///
/// Camera and see-through settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_CAMERA_SEETHROUGH = 11,
///
/// Virtual environment settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_VIRTUAL_ENVIRONMENT = 12,
///
/// Safety guard settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_SAFEGUARD = 13,
///
/// Room capture settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_ROOM_CAPTURE = 14,
///
/// Performance settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_PERFORMANCE = 15,
///
/// Control center settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_CONTROL_CENTRE = 16,
///
/// Notification settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_NOTIFICATIONS = 17,
///
/// App management settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_APP_MANAGEMENT = 18,
///
/// About device settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_ABOUT = 19,
///
/// Help and feedback settings. Applicable to Sparrow_PUI5130 devices.
///
CUSTOMIZE_SETTINGS_TAB_HELP_FEEDBACK = 20
}
}