Crates.io | bevy_qoi |
lib.rs | bevy_qoi |
version | 0.1.0 |
source | src |
created_at | 2022-08-24 00:17:11.399436 |
updated_at | 2022-08-24 00:17:11.399436 |
description | Bevy support for the QOI (Quite OK Image) format. |
homepage | https://github.com/digitaljokerman/bevy_qoi |
repository | https://github.com/digitaljokerman/bevy_qoi |
max_upload_size | |
id | 651421 |
size | 82,273 |
Bevy support for the QOI (Quite OK Image) format.
Add the QOIPlugin
to your app and you're good to go.
use bevy::prelude::*;
use bevy_qoi::QOIPlugin;
fn main() {
App::new()
// ...
.add_plugin(QOIPlugin)
// ...
.run();
}