FindGraphs
FindGraphs(string)
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)
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)
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)
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)
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.