mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Update config options (#2090)
This commit is contained in:
parent
16ea9ea213
commit
3c8f68b308
2 changed files with 64 additions and 0 deletions
|
|
@ -1436,4 +1436,46 @@ public enum SystemConfigOption
|
|||
/// </summary>
|
||||
[GameConfigOption("PadButton_R3", ConfigType.String)]
|
||||
PadButton_R3,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name ActiveInstanceGuid.
|
||||
/// This option is a String.
|
||||
/// </summary>
|
||||
[GameConfigOption("ActiveInstanceGuid", ConfigType.String)]
|
||||
ActiveInstanceGuid,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name ActiveProductGuid.
|
||||
/// This option is a String.
|
||||
/// </summary>
|
||||
[GameConfigOption("ActiveProductGuid", ConfigType.String)]
|
||||
ActiveProductGuid,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name MsqProgress.
|
||||
/// This option is a UInt.
|
||||
/// </summary>
|
||||
[GameConfigOption("MsqProgress", ConfigType.UInt)]
|
||||
MsqProgress,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name PromptConfigUpdate.
|
||||
/// This option is a UInt.
|
||||
/// </summary>
|
||||
[GameConfigOption("PromptConfigUpdate", ConfigType.UInt)]
|
||||
PromptConfigUpdate,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name TitleScreenType.
|
||||
/// This option is a UInt.
|
||||
/// </summary>
|
||||
[GameConfigOption("TitleScreenType", ConfigType.UInt)]
|
||||
TitleScreenType,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name FirstConfigBackup.
|
||||
/// This option is a UInt.
|
||||
/// </summary>
|
||||
[GameConfigOption("FirstConfigBackup", ConfigType.UInt)]
|
||||
FirstConfigBackup,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -118,6 +118,7 @@ public enum UiConfigOption
|
|||
/// System option with the internal name LockonDefaultZoom_179.
|
||||
/// This option is a Float.
|
||||
/// </summary>
|
||||
[Obsolete("This option won't work. Use LockonDefaultZoom.")]
|
||||
[GameConfigOption("LockonDefaultZoom_179", ConfigType.Float)]
|
||||
LockonDefaultZoom_179,
|
||||
|
||||
|
|
@ -3578,4 +3579,25 @@ public enum UiConfigOption
|
|||
/// </summary>
|
||||
[GameConfigOption("PadMode", ConfigType.UInt)]
|
||||
PadMode,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name EnableMoveTiltCharacter.
|
||||
/// This option is a UInt.
|
||||
/// </summary>
|
||||
[GameConfigOption("EnableMoveTiltCharacter", ConfigType.UInt)]
|
||||
EnableMoveTiltCharacter,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name EnableMoveTiltMountGround.
|
||||
/// This option is a UInt.
|
||||
/// </summary>
|
||||
[GameConfigOption("EnableMoveTiltMountGround", ConfigType.UInt)]
|
||||
EnableMoveTiltMountGround,
|
||||
|
||||
/// <summary>
|
||||
/// System option with the internal name EnableMoveTiltMountFly.
|
||||
/// This option is a UInt.
|
||||
/// </summary>
|
||||
[GameConfigOption("EnableMoveTiltMountFly", ConfigType.UInt)]
|
||||
EnableMoveTiltMountFly,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue