bevy_eventwork icon indicating copy to clipboard operation
bevy_eventwork copied to clipboard

An event based networking library for Bevy

Results 8 bevy_eventwork issues
Sort by recently updated
recently updated
newest added

Currently only TCP support is provided

``` 2022-06-22T11:26:08.570096Z INFO bevy_eventwork::tcp: Message length: 131113 2022-06-22T11:26:08.570585Z INFO bevy_eventwork::tcp: Reading message into buffer 2022-06-22T11:26:08.571064Z INFO bevy_eventwork::tcp: Message read 2022-06-22T11:26:08.609159Z INFO bevy_eventwork::tcp: Message deserialized and sent to eventwork // (beeg...

Updates the readme to correctly list bevy 0.13 support

Super simple update for compatibility with bevy 0.14

How are messages supposed to be formatted to be able to be send by JavaScript? For example, this doesn't work: ``` const socket = new WebSocket('ws://localhost:8081'); const message = {...

fixes #15 . Adds custom serialization which allows users to supply custom serialization functions for messages to utilize different serialization formats with minimal change to current user ergonomics. ## Changes...

No major changes, just had to rework minor bits of client example due to required components and text component changes. No changes to any user facing code. I'll update #18...

Please take this as a feature request. I noticed that if you wanted to have an online server reply to your requests, it was hard to set up. Bevy has...