Files
VR-WuKong/Packages/PICO Unity Integration SDK-3.3.2-20251111/Enterprise/Scripts/Enums/CustomizeSettingsTabEnum.cs
2025-11-13 17:40:28 +08:00

90 lines
3.7 KiB
C#

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