mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Note that font ptr must be supplied when setting TargetDrawList
Some checks failed
Rollup changes to next version / check (api14) (push) Failing after 4s
Tag Build / Tag Build (push) Successful in 2s
Build Dalamud / Build on Windows (push) Has been cancelled
Build Dalamud / Check API Compatibility (push) Has been cancelled
Build Dalamud / Deploy dalamud-distrib staging (push) Has been cancelled
Some checks failed
Rollup changes to next version / check (api14) (push) Failing after 4s
Tag Build / Tag Build (push) Successful in 2s
Build Dalamud / Build on Windows (push) Has been cancelled
Build Dalamud / Check API Compatibility (push) Has been cancelled
Build Dalamud / Deploy dalamud-distrib staging (push) Has been cancelled
This commit is contained in:
parent
8dcbd52c22
commit
ddc743aae1
1 changed files with 4 additions and 1 deletions
|
|
@ -12,7 +12,10 @@ public record struct SeStringDrawParams
|
||||||
/// <summary>Gets or sets the target draw list.</summary>
|
/// <summary>Gets or sets the target draw list.</summary>
|
||||||
/// <value>Target draw list, <c>default(ImDrawListPtr)</c> to not draw, or <c>null</c> to use
|
/// <value>Target draw list, <c>default(ImDrawListPtr)</c> to not draw, or <c>null</c> to use
|
||||||
/// <see cref="ImGui.GetWindowDrawList"/> (the default).</value>
|
/// <see cref="ImGui.GetWindowDrawList"/> (the default).</value>
|
||||||
/// <remarks>If this value is set, <see cref="ImGui.Dummy"/> will not be called, and ImGui ID will be ignored.
|
/// <remarks>
|
||||||
|
/// If this value is set, <see cref="ImGui.Dummy"/> will not be called, and ImGui ID will be ignored.
|
||||||
|
/// You <b>must</b> specify a valid draw list and a valid font via <see cref="Font"/> if you set this value,
|
||||||
|
/// since the renderer will not be able to retrieve them from ImGui context.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public ImDrawListPtr? TargetDrawList { get; set; }
|
public ImDrawListPtr? TargetDrawList { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue