Fix marking asset as edited when using Multi Blend node positions in Anim Graph

Closes #251
This commit is contained in:
Wojtek Figat
2021-03-07 10:31:31 +01:00
parent b8d03636dc
commit 7cb0ac3603

View File

@@ -621,6 +621,7 @@ namespace FlaxEditor.Surface.Archetypes
dataA.X = location.X;
_node.Values[4 + index * 2] = dataA;
_node.Surface.MarkAsEdited();
_node.UpdateUI();
}
@@ -751,6 +752,7 @@ namespace FlaxEditor.Surface.Archetypes
dataA.Y = location.Y;
_node.Values[4 + index * 2] = dataA;
_node.Surface.MarkAsEdited();
_node.UpdateUI();
}