Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore
| Name | UE::ConcertSyncCore::ETreeTraversalBehavior |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/Misc/ObjectPathHierarchy.h |
| Include Path | #include "Misc/ObjectPathHierarchy.h" |
Syntax
namespace UE
{
namespace ConcertSyncCore
{
enum ETreeTraversalBehavior
{
Continue,
SkipSubtree,
Break,
}
}
}
Values
| Name | Remarks |
|---|---|
| Continue | Gives us the next element (may be child or neigbhour) |
| SkipSubtree | Gives us the next neighbour element - do not list any children of this node. |
| Break | Stop iteration |