Flag

Windows
MacOS
Linux

References

Module

CollectionManager

Header

/Engine/Source/Developer/CollectionManager/Public/CollectionManagerTypes.h

Include

#include "CollectionManagerTypes.h"

Syntax

enum Flag
{
    Self               = 1<<0,
    Parents            = 1<<1,
    Children           = 1<<2,
    SelfAndParents     = Self | Parents,
    SelfAndChildren    = Self | Children,
    All                = Self | Parents | Children,
}

Values

Name

Description

Self

Include the current collection when performing work

Parents

Include the parent collections when performing work

Children

Include the child collections when performing work

SelfAndParents

Include parent collections in addition to the current collection

SelfAndChildren

Include child collections in addition to the current collection

All

Include parent and child collections in addition to the current collection

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss