Skip to content

Commit 929f260

Browse files
committed
Make RemoveNode virtual
1 parent a1d9c9f commit 929f260

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

game/addons/tools/Code/NodeGraph/GraphView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ public void ClearSelection()
466466
OnSelectionChanged?.Invoke();
467467
}
468468

469-
internal void RemoveNode( NodeUI node )
469+
public virtual void RemoveNode( NodeUI node )
470470
{
471471
var connections = Connections.Where( x => x.IsAttachedTo( node ) ).ToList();
472472

0 commit comments

Comments
 (0)