FindGraphs

FindGraphs(string)

public static NodeGraph[] FindGraphs(string name) ;

Description

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

Parameters

Parameter Name Description
name The name of the search NodeGraph.

Returns

Array of found NodeGraph.

FindGraphs(string, Type)

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

Description

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

Parameters

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

Returns

Array of found NodeGraph.

FindGraphs<T>(string)

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

Description

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

Type Parameters

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

Parameters

Parameter Name Description
name The name of the search NodeGraph.

Returns

Array of found NodeGraph.

FindGraphs(GameObject, string)

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

Description

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

Parameters

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

Returns

Array of found NodeGraph.

FindGraphs(GameObject, string, Type)

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

Description

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

Parameters

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

Returns

Array of found NodeGraph.

FindGraphs<T>(GameObject, string)

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

Description

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

Type Parameters

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

Parameters

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

Returns

Array of found NodeGraph.