mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +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 string CreditsTextTempl = @"
|
||||
Dalamud
|
||||
A FFXIV Hooking Framework
|
||||
A FFXIV Plugin Framework
|
||||
Version D{0}
|
||||
|
||||
|
||||
|
|
@ -97,8 +97,7 @@ Franz
|
|||
aers
|
||||
|
||||
|
||||
We use these awesome
|
||||
C# libraries:
|
||||
We use these awesome C# libraries:
|
||||
|
||||
Lumina by Adam
|
||||
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
|
||||
|
||||
|
||||
|
|
@ -144,7 +143,7 @@ Thank you for using XIVLauncher and Dalamud!
|
|||
|
||||
this.PositionCondition = ImGuiCond.Always;
|
||||
|
||||
this.BgAlpha = 0.5f;
|
||||
this.BgAlpha = 0.8f;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
|
@ -168,6 +167,22 @@ Thank you for using XIVLauncher and Dalamud!
|
|||
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/>
|
||||
public override void Draw()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue