mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-21 15:27:51 +01:00
Allow giantess fetish rsp scaling values.
This commit is contained in:
parent
575c1e2118
commit
edcfea5701
2 changed files with 5 additions and 3 deletions
|
|
@ -790,7 +790,7 @@ public partial class ModEditWindow
|
|||
using var color = ImRaii.PushColor(ImGuiCol.FrameBg,
|
||||
def < value ? ColorId.IncreasedMetaValue.Value() : ColorId.DecreasedMetaValue.Value(),
|
||||
def != value);
|
||||
if (ImGui.DragFloat("##rspValue", ref value, 0.001f, 0.01f, 8f) && value is >= 0.01f and <= 8f)
|
||||
if (ImGui.DragFloat("##rspValue", ref value, 0.001f, RspManipulation.MinValue, RspManipulation.MaxValue) && value is >= RspManipulation.MinValue and <= RspManipulation.MaxValue)
|
||||
editor.MetaEditor.Change(meta.Copy(value));
|
||||
|
||||
ImGuiUtil.HoverTooltip($"Default Value: {def:0.###}");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue