mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
docs: regenerate
This commit is contained in:
parent
857a693842
commit
aceb905c82
491 changed files with 201855 additions and 15575 deletions
|
|
@ -1,6 +1,5 @@
|
|||
using System.Numerics;
|
||||
using ImGuiNET;
|
||||
using Serilog;
|
||||
|
||||
namespace Dalamud.Interface
|
||||
{
|
||||
|
|
@ -38,6 +37,10 @@ namespace Dalamud.Interface
|
|||
public static void ScaledRelativeSameLine(float offset, float spacing = -1.0f) =>
|
||||
ImGui.SameLine(ImGui.GetCursorPosX() + (offset * GlobalScale));
|
||||
|
||||
public static void SetNextWindowPosRelativeMainViewport(
|
||||
Vector2 position, ImGuiCond condition = ImGuiCond.None, Vector2 pivot = default)
|
||||
=> ImGui.SetNextWindowPos(position + MainViewport.Pos, condition, pivot);
|
||||
|
||||
/// <summary>
|
||||
/// Get data needed for each new frame.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue