mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
feat(UiBuilder): add OverrideGameCursor
This commit is contained in:
parent
7605570fb0
commit
64eb2e60cf
4 changed files with 24 additions and 2 deletions
|
|
@ -87,6 +87,15 @@ namespace Dalamud.Interface
|
|||
/// </summary>
|
||||
public bool DisableGposeUiHide { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether or not the game's cursor should be overridden with the ImGui cursor.
|
||||
/// </summary>
|
||||
public bool OverrideGameCursor
|
||||
{
|
||||
get => this.dalamud.InterfaceManager.OverrideGameCursor;
|
||||
set => this.dalamud.InterfaceManager.OverrideGameCursor = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets an action that is called any time ImGui fonts need to be rebuilt.<br/>
|
||||
/// Any ImFontPtr objects that you store <strong>can be invalidated</strong> when fonts are rebuilt
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue