Auran131
(Auran13)
1
anyone know what causes this? it messes with my OCD and it exists on default nodes like spawnactor?
as far as i can see it seems to be an ‘OrphanedPin’ from RewireOldNodeToNew but i cant get rid of it without a RefreshNode.
which leads to my second question, whats the c++ equivalent of RefreshNode
ive tried rebuilding, updating the graph etc but none have the same effect
3dRaven
(3dRaven)
2
At a glance in FBlueprintEditorUtils you could trigger RefreshAllNodes for your current blueprint or RefreshGraphNodes for a specific graph.
K2Node_FormatText.cpp
has a refresh call where it triggers
GetGraph()->NotifyNodeChanged(this);
FBlueprintEditorUtils::MarkBlueprintAsStructurallyModified(GetBlueprint());
Perhaps that can lead you to the solution?
1 Like
Auran131
(Auran13)
3
thanks ive tried node changed, not sure if i’ve tried the second one, will update when i do 
Auran131
(Auran13)
4
GetGraph()->NotifyGraphChanged();
GetGraph()->NotifyNodeChanged(this);
FBlueprintEditorUtils::MarkBlueprintAsModified(GetBlueprint()); FBlueprintEditorUtils::MarkBlueprintAsStructurallyModified(GetBlueprint());
ive tried all of these with no success 
PREDALIEN
(PREDALIEN)
5
UEdGraphNode::ReconstructNode
Auran131
(Auran13)
6
no dice, also the weird thing is it technically happens when you reconstruct the node.
Auran131
(Auran13)
7
void RefreshNode()
{
//Remove orphaned Pins
for (int32 PinIndex = Pins.Num() - 1; PinIndex >= 0; --PinIndex)
{
if (Pins[PinIndex]->bOrphanedPin == true)
{
RemovePin(Pins[PinIndex]);
}
}
GetGraph()->NotifyNodeChanged(this);
}
lacking a good solution this works, maybe its intended by Epic to keep them but it usually only keeps the last one so feels like a bug
1 Like