EStateFlags

Choose your operating system:

Windows

macOS

Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Private/Serialization/CompactBinaryWriter.cpp

Include

#include "Serialization/CompactBinaryWriter.cpp"

Syntax

enum EStateFlags
{
    None      = 0,
    Name      = 1 << 0,
    Field     = 1 << 1,
    Array     = 1 << 2,
    Object    = 1 << 3,
}

Values

Name

Description

None

Name

Whether a name has been written for the current field.

Field

Whether this state is in the process of writing a field.

Array

Whether this state is for array fields.

Object

Whether this state is for object fields.