-
Notifications
You must be signed in to change notification settings - Fork 51
Battles Network
Garrett Luskey edited this page Jul 30, 2022
·
2 revisions
Battles network is a pure P2P instance based network. NOTE: The CoopServer only manages the creation and deletion of instances, no network traffic is transmitted through the server.
IPacket and IPacketHander
IPackets are meant to be used to transfer any type of data using any type of reliability.
See this Example for assistance with implementation.
Network messages are meant to be used for reliable events, i.e. adding and deleting entities.
See this Example for how to use network messages.