mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Add ImAnim bindings
This commit is contained in:
parent
e8485dee25
commit
2b5e2893c5
43 changed files with 4852 additions and 3 deletions
19
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimTextPathAlign.cs
Normal file
19
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimTextPathAlign.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
namespace Dalamud.Bindings.ImAnim;
|
||||
|
||||
public enum ImAnimTextPathAlign
|
||||
{
|
||||
/// <summary>
|
||||
/// Text starts at path start (or offset)
|
||||
/// </summary>
|
||||
Start,
|
||||
|
||||
/// <summary>
|
||||
/// Text centered on path
|
||||
/// </summary>
|
||||
Center,
|
||||
|
||||
/// <summary>
|
||||
/// Text ends at path end
|
||||
/// </summary>
|
||||
End,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue