You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In UEdGraph_GenericGraph::RebuildGenericGraph() function, after renaming a node the outer of a node must be the same as before:
Node->Rename(nullptr, Graph, REN_DontCreateRedirectors | REN_DoNotDirty)
this line must change to: Node->Rename(nullptr, NodeMap[Graph->AllNodes[i]], REN_DontCreateRedirectors | REN_DoNotDirty);
The text was updated successfully, but these errors were encountered:
In
UEdGraph_GenericGraph::RebuildGenericGraph()
function, after renaming a node the outer of a node must be the same as before:Node->Rename(nullptr, Graph, REN_DontCreateRedirectors | REN_DoNotDirty)
this line must change to:
Node->Rename(nullptr, NodeMap[Graph->AllNodes[i]], REN_DontCreateRedirectors | REN_DoNotDirty);
The text was updated successfully, but these errors were encountered: