This commit is contained in:
SoulliesOfficial
2026-06-09 01:43:55 -04:00
parent 0fb72f5bba
commit 5fc1392747
171 changed files with 30149 additions and 22331 deletions

View File

@@ -30,6 +30,7 @@ namespace Ichni.Editor.Commands
{
if (target == null) return;
ReflectionHelper.SetDeepValue(target, path, newValue);
target.Refresh();
}
public void Undo()
@@ -38,9 +39,8 @@ namespace Ichni.Editor.Commands
if (target == null) return;
ReflectionHelper.SetDeepValue(target, path, oldValue);
target.Refresh();
target.Refresh();
RefreshInspectorIfMatched();
}
public void Redo()
@@ -49,8 +49,7 @@ namespace Ichni.Editor.Commands
ReflectionHelper.SetDeepValue(target, path, newValue);
target.Refresh();
RefreshInspectorIfMatched();
}
public bool TryMerge(ICommand other)