Releases: bacongobbler/bevy_simple_networking
0.4.0
This release brings the plugin up to bevy 0.14 compatibility.
See the examples directory for more information on how to use this plugin.
0.3.0
This release brings the plugin up to bevy 0.6 compatibility.
See the examples directory for more information on how to use this plugin.
0.2.0
This release broke up the NetworkingPlugin into two parts: the ClientPlugin and the ServerPlugin. The ClientPlugin is responsible for connecting to a remote server, sending heartbeat packets every few seconds. The ServerPlugin is responsible for handling connection data as well as incoming messages from clients.
Both plugins provide a NetworkEvent stream so the developer can send and respond to messages sent from either the client or the server.
See the examples directory for more information.