mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Add missing documentation
This commit is contained in:
parent
7cd2af9a66
commit
3cb15f2b9e
1 changed files with 72 additions and 3 deletions
|
|
@ -19,8 +19,8 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
DirectHit = 1,
|
DirectHit = 1,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Val1 in larger serif font with exclamation, with Text2
|
/// Val1 in larger serif font with exclamation, with Text2 in sans-serif as subtitle.
|
||||||
/// in sans-serif as subtitle. Does a bigger bounce effect on appearance.
|
/// Does a bigger bounce effect on appearance.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CriticalHit = 2,
|
CriticalHit = 2,
|
||||||
|
|
||||||
|
|
@ -75,6 +75,10 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
/// Icon next to sans-serif Text1.
|
/// Icon next to sans-serif Text1.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NamedIcon = 12,
|
NamedIcon = 12,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Icon next to sans-serif Text1 (2).
|
||||||
|
/// </summary>
|
||||||
NamedIcon2 = 13,
|
NamedIcon2 = 13,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -92,8 +96,19 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NamedTp = 16,
|
NamedTp = 16,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// AutoAttack with sans-serif Text1 to the left of the Val1 (2).
|
||||||
|
/// </summary>
|
||||||
NamedAttack2 = 17,
|
NamedAttack2 = 17,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sans-serif Text1 next to serif Val1 with all caps condensed font MP with Text2 in sans-serif as subtitle (2).
|
||||||
|
/// </summary>
|
||||||
NamedMp2 = 18,
|
NamedMp2 = 18,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sans-serif Text1 next to serif Val1 with all caps condensed font TP with Text2 in sans-serif as subtitle (2).
|
||||||
|
/// </summary>
|
||||||
NamedTp2 = 19,
|
NamedTp2 = 19,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -122,9 +137,25 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
/// AutoAttack with no Text2.
|
/// AutoAttack with no Text2.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
AutoAttackNoText = 24,
|
AutoAttackNoText = 24,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// AutoAttack with no Text2 (2).
|
||||||
|
/// </summary>
|
||||||
AutoAttackNoText2 = 25,
|
AutoAttackNoText2 = 25,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Val1 in larger serif font with exclamation, with Text2 in sans-serif as subtitle. Does a bigger bounce effect on appearance (2).
|
||||||
|
/// </summary>
|
||||||
CriticalHit2 = 26,
|
CriticalHit2 = 26,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// AutoAttack with no Text2 (3).
|
||||||
|
/// </summary>
|
||||||
AutoAttackNoText3 = 27,
|
AutoAttackNoText3 = 27,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// CriticalHit with sans-serif Text1 to the left of the Val1 (2).
|
||||||
|
/// </summary>
|
||||||
NamedCriticalHit2 = 28,
|
NamedCriticalHit2 = 28,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -148,6 +179,11 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
/// Same as NamedIcon but Text1 is slightly faded. Used for buff expiration.
|
/// Same as NamedIcon but Text1 is slightly faded. Used for buff expiration.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NamedIconFaded = 32,
|
NamedIconFaded = 32,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Same as NamedIcon but Text1 is slightly faded (2).
|
||||||
|
/// Used for buff expiration.
|
||||||
|
/// </summary>
|
||||||
NamedIconFaded2 = 33,
|
NamedIconFaded2 = 33,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -175,8 +211,19 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NamedHasNoEffect = 38,
|
NamedHasNoEffect = 38,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// AutoAttack with sans-serif Text1 to the left of the Val1 (3).
|
||||||
|
/// </summary>
|
||||||
NamedAttack3 = 39,
|
NamedAttack3 = 39,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sans-serif Text1 next to serif Val1 with all caps condensed font MP with Text2 in sans-serif as subtitle (3).
|
||||||
|
/// </summary>
|
||||||
NamedMp3 = 40,
|
NamedMp3 = 40,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sans-serif Text1 next to serif Val1 with all caps condensed font TP with Text2 in sans-serif as subtitle (3).
|
||||||
|
/// </summary>
|
||||||
NamedTp3 = 41,
|
NamedTp3 = 41,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -194,7 +241,15 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NamedIconWithItemOutline = 44,
|
NamedIconWithItemOutline = 44,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// AutoAttack with no Text2 (4).
|
||||||
|
/// </summary>
|
||||||
AutoAttackNoText4 = 45,
|
AutoAttackNoText4 = 45,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Val1 in larger serif font with exclamation, with Text2 in sans-serif as subtitle (3).
|
||||||
|
/// Does a bigger bounce effect on appearance.
|
||||||
|
/// </summary>
|
||||||
CriticalHit3 = 46,
|
CriticalHit3 = 46,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -207,8 +262,22 @@ namespace Dalamud.Game.Gui.FlyText
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Reflected = 48,
|
Reflected = 48,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Val1 in serif font, Text2 in sans-serif as subtitle (2).
|
||||||
|
/// Does a bounce effect on appearance.
|
||||||
|
/// </summary>
|
||||||
DirectHit2 = 49,
|
DirectHit2 = 49,
|
||||||
CriticalHit5 = 50,
|
|
||||||
|
/// <summary>
|
||||||
|
/// Val1 in larger serif font with exclamation, with Text2 in sans-serif as subtitle (4).
|
||||||
|
/// Does a bigger bounce effect on appearance.
|
||||||
|
/// </summary>
|
||||||
|
CriticalHit4 = 50,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Val1 in even larger serif font with 2 exclamations, Text2 in sans-serif as subtitle (2).
|
||||||
|
/// Does a large bounce effect on appearance. Does not scroll up or down the screen.
|
||||||
|
/// </summary>
|
||||||
CriticalDirectHit2 = 51,
|
CriticalDirectHit2 = 51,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue