Navigation
API > API/Runtime > API/Runtime/Engine
Flags for specifying optional behaviors.
| Name | UE::EPrintObjectFlag |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/PrintObjectUtils.h |
| Include Path | #include "PrintObjectUtils.h" |
Syntax
namespace UE
{
enum EPrintObjectFlag
{
None = 0,
Verbose = (1 << 0),
PropertyInitializationState = (1 << 1),
FullArchetypeChain = (1 << 2),
}
}
Values
| Name | Remarks |
|---|---|
| None | No optional behaviors. |
| Verbose | Include verbose information. |
| PropertyInitializationState | Include the initialization state for properties (only relevant for functions that print properties). |
| FullArchetypeChain | Show the full archetype hierarchy (only relevant for functions that print archetypes). |