You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.2 KiB
XML
19 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PacketGroup Name="MultiplayerEditorPackets" PacketStart="CorePackets::PacketType::MAX">
|
|
<Include File="AzNetworking/AutoGen/CorePackets.AutoPackets.h" />
|
|
<Include File="Multiplayer/MultiplayerTypes.h" />
|
|
<Include File="Multiplayer/NetworkTime/INetworkTime.h" />
|
|
|
|
<Packet Name="EditorServerReadyForLevelData" Desc="A packet the editor-server will send on startup once it's ready to receive all the current level data from the Editor."/>
|
|
|
|
<Packet Name="EditorServerLevelData" Desc="A packet that initializes the editor-server with level data from the editor. The packet includes data required for loading the current level on the server (entities and asset data).">
|
|
<Member Type="bool" Name="lastUpdate" Init="false"/>
|
|
|
|
<!--16379 is 16384 (max TCP packet size) - 1 byte (bool lastUpdate) - 4 bytes (serialization overhead for ByteBuffer) -->
|
|
<Member Type="AzNetworking::ByteBuffer<16379>" Name="assetData"/>
|
|
</Packet>
|
|
|
|
<Packet Name="EditorServerReady" Desc="A response packet the editor-server should send after getting the editor's level data when it's ready to begin the actual game-mode network simulation."/>
|
|
</PacketGroup>
|