public void Focus(INode node)
        {
            var selection = node is Object asset ?
                            asset :
                            SelectionContainer.Initialize(node as SerializableNode, node.GraphData as NodeGraph);

            selection.AddToEditorSelection(false);
        }