Bevy support for the QOI (Quite OK Image) format. Fork of bevyqoi based on the rapidqoi crate.
QOIAssetLoader
.QOIPlugin
to register the asset loader more conveniently.Add the QOIPlugin
to your app, and you're good to go.
```rs use bevy::prelude::*; use bevyrapidqoi::QOIPlugin;
fn main() { App::new() .add_plugin(QOIPlugin) .run(); } ```
| Bevy | bevyrapidqoi | |------|----------------| | 0.8 | 1.0 |