mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-20 14:37:46 +01:00
Add NPC appearance tab.
This commit is contained in:
parent
4b242bb3cf
commit
0c1dd50890
18 changed files with 684 additions and 35 deletions
|
|
@ -82,8 +82,11 @@ public partial class CustomizationDrawer
|
|||
if (_customize.BodyType.Value == 1)
|
||||
return;
|
||||
|
||||
if (!ImGuiUtil.DrawDisabledButton($"Reset Body Type {_customize.BodyType.Value} to Default",
|
||||
new Vector2(_raceSelectorWidth + _framedIconSize.X + ImGui.GetStyle().ItemSpacing.X, 0), string.Empty, _lockedRedraw))
|
||||
var label = _lockedRedraw
|
||||
? $"Body Type {_customize.BodyType.Value}"
|
||||
: $"Reset Body Type {_customize.BodyType.Value} to Default";
|
||||
if (!ImGuiUtil.DrawDisabledButton(label, new Vector2(_raceSelectorWidth + _framedIconSize.X + ImGui.GetStyle().ItemSpacing.X, 0),
|
||||
string.Empty, _lockedRedraw))
|
||||
return;
|
||||
|
||||
Changed |= CustomizeFlag.BodyType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue