FindGraphs

public static NodeGraph[] FindGraphs(string name) ;

Get the NodeGraph of the same name that is in the scene.

Parameter Name Description
name The name of the search NodeGraph.

Array of found NodeGraph.

public static NodeGraph[] FindGraphs(string name, Type type) ;

Get the NodeGraph of the same name that is in the scene.

Parameter Name Description
name The name of the search NodeGraph.
type The type of the search NodeGraph.

Array of found NodeGraph.

public static T[] FindGraphs<T>(string name) ;

Get the NodeGraph of the same name that is in the scene.

Type Parameter Name Description Type Constraints
T The type of the search NodeGraph.
Parameter Name Description
name The name of the search NodeGraph.

Array of found NodeGraph.

public static NodeGraph[] FindGraphs(GameObject gameObject, string name) ;

Get the NodeGraph of the same name that is attached to a GameObject.

Parameter Name Description
gameObject Want to search GameObject.
name The name of the search NodeGraph.

Array of found NodeGraph.

public static NodeGraph[] FindGraphs(GameObject gameObject, string name, Type type) ;

Get the NodeGraph of the same name that is attached to a GameObject.

Parameter Name Description
gameObject Want to search GameObject.
name The name of the search NodeGraph.
type The type of the search NodeGraph.

Array of found NodeGraph.

public static T[] FindGraphs<T>(GameObject gameObject, string name) ;

Get the NodeGraph of the same name that is attached to a GameObject.

Type Parameter Name Description Type Constraints
T The type of the search NodeGraph.
Parameter Name Description
gameObject Want to search GameObject.
name The name of the search NodeGraph.

Array of found NodeGraph.