Navigation
API > API/Runtime > API/Runtime/IrisCore
Copyright Epic Games, Inc. All Rights Reserved.
Definitions.
A FNetSerializer is needed for replication support of a certain type. Most types that can be marked as UPROPERTY are already supported. Types that aren't supported or need special support will emit warnings when descriptors are built for a UCLASS, USTRUCT or UFUNCTION. Find below how to implement one.
| Name | UE::Net::ESubObjectInsertionOrder |
| Type | enum |
| Header File | /Engine/Source/Runtime/Net/Iris/Public/Iris/ReplicationSystem/ReplicationBridge.h |
| Include Path | #include "Iris/ReplicationSystem/ReplicationBridge.h" |
Syntax
namespace UE
{
namespace Net
{
enum ESubObjectInsertionOrder
{
None,
ReplicateWith,
InsertAtStart,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| ReplicateWith | Insert the subobject so it will replicate before the other subobject. |
| InsertAtStart | Insert the subobject at the start of the list so it can be created and replicated first |