Navigation
API > API/Runtime > API/Runtime/Engine
| |
|
| Name |
ERepLayoutFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Engine/Public/Net/RepLayout.h |
| Include Path |
#include "Net/RepLayout.h" |
Syntax
enum ERepLayoutFlags
{
None = 0,
IsActor = (1 << 0),
PartialPushSupport = (1 << 1),
FullPushSupport = (1 << 2),
HasObjectOrNetSerializeProperties = (1 << 3),
NoReplicatedProperties = (1 << 4),
FullPushProperties = (1 << 5),
HasInitialOnlyProperties = (1 << 6),
HasDynamicConditionProperties = (1 << 7),
}
Values
| Name |
Remarks |
| None |
|
| IsActor |
|
| PartialPushSupport |
This RepLayout is for AActor or a subclass of AActor. |
| FullPushSupport |
This RepLayout has some properties that use Push Model and some that don't. |
| HasObjectOrNetSerializeProperties |
All properties and fast arrays in this RepLayout use Push Model. |
| NoReplicatedProperties |
Will be set for any RepLayout that contains Object or Net Serialize property commands. |
| FullPushProperties |
Will be set if the RepLayout has no lifetime properties, or they are all disabled. |
| HasInitialOnlyProperties |
All properties in this RepLayout use Push Model. |
| HasDynamicConditionProperties |
There is at least 1 Initial Only Lifetime property on this RepLayout. |