Navigation
API > API/Plugins > API/Plugins/SequenceNavigator > API/Plugins/SequenceNavigator/INavigationToolView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void GetChildrenOfItem
(
const FNavigationToolItemPtr InItem, |
INavigationToolView.h | ||
void GetChildrenOfItem
(
const FNavigationToolItemPtr& InItem, |
Gets the Children of a given Item. | INavigationToolView.h |
GetChildrenOfItem(const FNavigationToolItemPtr, TArray< FNavigationToolItemPtr > &)
| Name | GetChildrenOfItem |
| Type | function |
| Header File | /Engine/Plugins/Experimental/SequenceNavigator/Source/SequenceNavigator/Public/INavigationToolView.h |
| Include Path | #include "INavigationToolView.h" |
void GetChildrenOfItem
(
const FNavigationToolItemPtr InItem,
TArray < FNavigationToolItemPtr > & OutChildren
) const
GetChildrenOfItem(const FNavigationToolItemPtr &, TArray< FNavigationToolItemPtr > &, ENavigationToolItemViewMode, const TSet< FNavigationToolItemPtr > &)
Description
Gets the Children of a given Item. Can recurse if the immediate child is hidden (the children of these hidden items should still be given the opportunity to show up)
| Name | GetChildrenOfItem |
| Type | function |
| Header File | /Engine/Plugins/Experimental/SequenceNavigator/Source/SequenceNavigator/Public/INavigationToolView.h |
| Include Path | #include "INavigationToolView.h" |
void GetChildrenOfItem
(
const FNavigationToolItemPtr & InItem,
TArray < FNavigationToolItemPtr > & OutChildren,
ENavigationToolItemViewMode InViewMode,
const TSet < FNavigationToolItemPtr > & InRecursionDisallowedItems
) const
Parameters
| Name | Remarks |
|---|---|
| InItem | the Item to get the children of |
| OutChildren | the visible children in the give view mode. |
| InViewMode | the view mode(s) that the children should support to be added to OutChildren |
| InRecursionDisallowedItems | the items where recursion should not be performed |