Skip to content

Releases: bacongobbler/bevy_simple_networking

0.3.0

29 Jan 18:19
0.3.0
740d232
Compare
Choose a tag to compare

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

13 Oct 00:51
Compare
Choose a tag to compare

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.