Toolkit.FindNode

FindNode(this Scene, Predicate<Node>)

Finds a Node by name in the current graph.

public static Node FindNode(this Scene scene, Predicate<Node> predicate)
ParameterTypeDescription
sceneSceneThis Scene instance.
predicatePredicate`1A function to test each Node for a condition.

Return Value

A Node instance, or Null.

See Also


FindNode(this Node, Predicate<Node>)

Finds a Node by name in the current graph.

public static Node FindNode(this Node node, Predicate<Node> predicate)
ParameterTypeDescription
nodeNodeThis Node instance.
predicatePredicate`1A function to test each Node for a condition.

Return Value

A Node instance, or Null.

See Also