mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Add ImAnim bindings
This commit is contained in:
parent
e8485dee25
commit
2b5e2893c5
43 changed files with 4852 additions and 3 deletions
24
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimAnchorSpace.cs
Normal file
24
imgui/Dalamud.Bindings.ImAnim/Enums/ImAnimAnchorSpace.cs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
namespace Dalamud.Bindings.ImAnim;
|
||||
|
||||
public enum ImAnimAnchorSpace
|
||||
{
|
||||
/// <summary>
|
||||
/// ImGui::GetContentRegionAvail()
|
||||
/// </summary>
|
||||
WindowContent,
|
||||
|
||||
/// <summary>
|
||||
/// ImGui::GetWindowSize()
|
||||
/// </summary>
|
||||
Window,
|
||||
|
||||
/// <summary>
|
||||
/// ImGui::GetWindowViewport()->Size
|
||||
/// </summary>
|
||||
Viewport,
|
||||
|
||||
/// <summary>
|
||||
/// ImGui::GetItemRectSize()
|
||||
/// </summary>
|
||||
LastItem,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue