Navigation
API > API/Runtime > API/Runtime/Engine
| Name | UE::Transaction::DiffUtil::EGetDiffableObjectMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/TransactionCommon.h |
| Include Path | #include "TransactionCommon.h" |
Syntax
namespace UE
{
namespace Transaction
{
namespace DiffUtil
{
enum EGetDiffableObjectMode
{
SerializeObject,
SerializeProperties,
Custom,
}
}
}
}
Values
| Name | Remarks |
|---|---|
| SerializeObject | Serialize the entire object state by calling its Serialize function |
| SerializeProperties | Serialize the property state of the object by calling its SerializeScriptProperties function |
| Custom | Serialize the object via a custom serialize function |