From a88151de7f95dcf566314771dab1b44ada43b6be Mon Sep 17 00:00:00 2001 From: Cara Date: Tue, 27 Jun 2023 09:53:54 +0930 Subject: [PATCH] Update Config List (#1293) --- Dalamud/Game/Config/UiConfigOption.cs | 161 ++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) diff --git a/Dalamud/Game/Config/UiConfigOption.cs b/Dalamud/Game/Config/UiConfigOption.cs index 44be0d380..98fb4502d 100644 --- a/Dalamud/Game/Config/UiConfigOption.cs +++ b/Dalamud/Game/Config/UiConfigOption.cs @@ -3314,4 +3314,165 @@ public enum UiConfigOption /// [GameConfigOption("PvPFrontlinesGCFree", ConfigType.UInt)] PvPFrontlinesGCFree, + + /// + /// System option with the internal name PetMirageTypeFairy. + /// This option is a UInt. + /// + [GameConfigOption("PetMirageTypeFairy", ConfigType.UInt)] + PetMirageTypeFairy, + + /// + /// System option with the internal name ExHotbarChangeHotbar1IsFashion. + /// This option is a UInt. + /// + [GameConfigOption("ExHotbarChangeHotbar1IsFashion", ConfigType.UInt)] + ExHotbarChangeHotbar1IsFashion, + + /// + /// System option with the internal name HotbarCrossUseExDirectionAutoSwitch. + /// This option is a UInt. + /// + [GameConfigOption("HotbarCrossUseExDirectionAutoSwitch", ConfigType.UInt)] + HotbarCrossUseExDirectionAutoSwitch, + + /// + /// System option with the internal name NamePlateDispJobIcon. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateDispJobIcon", ConfigType.UInt)] + NamePlateDispJobIcon, + + /// + /// System option with the internal name NamePlateDispJobIconType. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateDispJobIconType", ConfigType.UInt)] + NamePlateDispJobIconType, + + /// + /// System option with the internal name NamePlateSetRoleColor. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateSetRoleColor", ConfigType.UInt)] + NamePlateSetRoleColor, + + /// + /// System option with the internal name NamePlateColorTank. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateColorTank", ConfigType.UInt)] + NamePlateColorTank, + + /// + /// System option with the internal name NamePlateEdgeTank. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateEdgeTank", ConfigType.UInt)] + NamePlateEdgeTank, + + /// + /// System option with the internal name NamePlateColorHealer. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateColorHealer", ConfigType.UInt)] + NamePlateColorHealer, + + /// + /// System option with the internal name NamePlateEdgeHealer. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateEdgeHealer", ConfigType.UInt)] + NamePlateEdgeHealer, + + /// + /// System option with the internal name NamePlateColorDps. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateColorDps", ConfigType.UInt)] + NamePlateColorDps, + + /// + /// System option with the internal name NamePlateEdgeDps. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateEdgeDps", ConfigType.UInt)] + NamePlateEdgeDps, + + /// + /// System option with the internal name NamePlateColorOtherClass. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateColorOtherClass", ConfigType.UInt)] + NamePlateColorOtherClass, + + /// + /// System option with the internal name NamePlateEdgeOtherClass. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateEdgeOtherClass", ConfigType.UInt)] + NamePlateEdgeOtherClass, + + /// + /// System option with the internal name NamePlateDispWorldTravel. + /// This option is a UInt. + /// + [GameConfigOption("NamePlateDispWorldTravel", ConfigType.UInt)] + NamePlateDispWorldTravel, + + /// + /// System option with the internal name LogNameIconType. + /// This option is a UInt. + /// + [GameConfigOption("LogNameIconType", ConfigType.UInt)] + LogNameIconType, + + /// + /// System option with the internal name LogDispClassJobName. + /// This option is a UInt. + /// + [GameConfigOption("LogDispClassJobName", ConfigType.UInt)] + LogDispClassJobName, + + /// + /// System option with the internal name LogSetRoleColor. + /// This option is a UInt. + /// + [GameConfigOption("LogSetRoleColor", ConfigType.UInt)] + LogSetRoleColor, + + /// + /// System option with the internal name LogColorRoleTank. + /// This option is a UInt. + /// + [GameConfigOption("LogColorRoleTank", ConfigType.UInt)] + LogColorRoleTank, + + /// + /// System option with the internal name LogColorRoleHealer. + /// This option is a UInt. + /// + [GameConfigOption("LogColorRoleHealer", ConfigType.UInt)] + LogColorRoleHealer, + + /// + /// System option with the internal name LogColorRoleDPS. + /// This option is a UInt. + /// + [GameConfigOption("LogColorRoleDPS", ConfigType.UInt)] + LogColorRoleDPS, + + /// + /// System option with the internal name LogColorOtherClass. + /// This option is a UInt. + /// + [GameConfigOption("LogColorOtherClass", ConfigType.UInt)] + LogColorOtherClass, + + /// + /// System option with the internal name ItemInventryStoreEnd. + /// This option is a UInt. + /// + [GameConfigOption("ItemInventryStoreEnd", ConfigType.UInt)] + ItemInventryStoreEnd, }