mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 13:57:43 +01:00
fix: credits tweaks
This commit is contained in:
parent
be89419298
commit
7bb3de4bdf
1 changed files with 20 additions and 5 deletions
|
|
@ -21,7 +21,7 @@ namespace Dalamud.Interface.Internal.Windows
|
||||||
private const float CreditFPS = 60.0f;
|
private const float CreditFPS = 60.0f;
|
||||||
private const string CreditsTextTempl = @"
|
private const string CreditsTextTempl = @"
|
||||||
Dalamud
|
Dalamud
|
||||||
A FFXIV Hooking Framework
|
A FFXIV Plugin Framework
|
||||||
Version D{0}
|
Version D{0}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -97,8 +97,7 @@ Franz
|
||||||
aers
|
aers
|
||||||
|
|
||||||
|
|
||||||
We use these awesome
|
We use these awesome C# libraries:
|
||||||
C# libraries:
|
|
||||||
|
|
||||||
Lumina by Adam
|
Lumina by Adam
|
||||||
FFXIVClientStructs by aers
|
FFXIVClientStructs by aers
|
||||||
|
|
@ -115,7 +114,7 @@ Join us at: https://discord.gg/3NMcUV5
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Dalamud is licensed under AGPL V3 or later
|
Dalamud is licensed under AGPL v3 or later
|
||||||
Contribute at: https://github.com/goatsoft/Dalamud
|
Contribute at: https://github.com/goatsoft/Dalamud
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -144,7 +143,7 @@ Thank you for using XIVLauncher and Dalamud!
|
||||||
|
|
||||||
this.PositionCondition = ImGuiCond.Always;
|
this.PositionCondition = ImGuiCond.Always;
|
||||||
|
|
||||||
this.BgAlpha = 0.5f;
|
this.BgAlpha = 0.8f;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
|
|
@ -168,6 +167,22 @@ Thank you for using XIVLauncher and Dalamud!
|
||||||
Service<GameGui>.Get().SetBgm(9999);
|
Service<GameGui>.Get().SetBgm(9999);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public override void PreDraw()
|
||||||
|
{
|
||||||
|
ImGui.PushStyleVar(ImGuiStyleVar.WindowPadding, new Vector2(0, 0));
|
||||||
|
|
||||||
|
base.PreDraw();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public override void PostDraw()
|
||||||
|
{
|
||||||
|
ImGui.PopStyleVar();
|
||||||
|
|
||||||
|
base.PostDraw();
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public override void Draw()
|
public override void Draw()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue