Navigation
BlueprintAPI > BlueprintAPI/MovieGraph
Finds all nodes (by type) for the given branch name (see GetBranchNames()). Returns all results of that type following traversal order (ie: right to left). To prevent accidentally editing unrelated assets, does not dive into sub-graphs (but can continue traversal beyond them), so returned results should only exist in current asset. Does not contain the Input or Output nodes, see GetInputNode() and GetOutputNode().
Target is Movie Graph Config
Inputs
| Type | Name | Description |
|---|---|---|
| object | Target | |
| class | In Class | The node class type to search for. Use UMovieGraphSettingNode to only include nodes that show up in the final evaluated graph (excludes nodes like the Branch node). |
| name | In Branch Name | The branch to search for these nodes on. |
| boolean | Exact Match | Defaults false. If true, will not consider inherited classes of InClass. (ie: If requesting a base class and only child classes exist, they will not count when using exact matching). |
Outputs
| Type | Name | Description |
|---|---|---|
| object | Return Value | All nodes found (if any) which are of the specified InClass type on the given branch. |