Expand description
§bevy-s2n-quic
An Aeronet compatible Bevy plugin providing network IO with QUIC based on s2n-quic.
§Getting Started
Add the default plugins to your app:
use bevy::prelude::*;
use bevy_s2n_quic::QuicDefaultPlugins;
App::new()
.add_plugins(QuicDefaultPlugins);See the simple_net_system example for a basic setup of connecting a server and client
§Feature Flags
| Flag | Description |
|---|---|
connection-errors | Adds error components when connections fail |
stream-errors | Adds error components when streams fail |
performance-warns | Warns when buffers fill faster than they drain (default) |
Modules§
Structs§
- Quic
Aeronet Plugins - The plugin group for Aeronet event handling.
- Quic
Default Plugins - The default set of plugins needed to make the Bevy Quic components function and handle errors and connection attempts.