Regenerate bindings

This commit is contained in:
goaaats 2025-07-20 01:23:58 +02:00
parent 6078c42963
commit e559ae6b20
310 changed files with 361033 additions and 717041 deletions

View file

@ -25,7 +25,7 @@ namespace Dalamud.Bindings.ImGui
None = unchecked(0),
/// <summary>
/// Don't display the dockspace node but keep it alive. Windows docked into this dockspace node won't be undocked.<br/>
/// To be documented.
/// </summary>
KeepAliveOnly = unchecked(1),
@ -35,7 +35,7 @@ namespace Dalamud.Bindings.ImGui
NoDockingInCentralNode = unchecked(4),
/// <summary>
/// Enable passthru dockspace: 1) DockSpace() will render a ImGuiCol_WindowBg background covering everything excepted the Central Node when empty. Meaning the host window should probably use SetNextWindowBgAlpha(0.0f) prior to Begin() when using this. 2) When Central Node is empty: let inputs pass-through + won't display a DockingEmptyBg background. See demo for details.<br/>
/// To be documented.
/// </summary>
PassthruCentralNode = unchecked(8),
@ -45,12 +45,12 @@ namespace Dalamud.Bindings.ImGui
NoSplit = unchecked(16),
/// <summary>
/// Saved Disable resizing node using the splitterseparators. Useful with programmatically setup dockspaces.<br/>
/// To be documented.
/// </summary>
NoResize = unchecked(32),
/// <summary>
/// Tab bar will automatically hide when there is a single window in the dock node.<br/>
/// To be documented.
/// </summary>
AutoHideTabBar = unchecked(64),
}