bevy_qoi

Crates.iobevy_qoi
lib.rsbevy_qoi
version0.1.0
sourcesrc
created_at2022-08-24 00:17:11.399436
updated_at2022-08-24 00:17:11.399436
descriptionBevy support for the QOI (Quite OK Image) format.
homepagehttps://github.com/digitaljokerman/bevy_qoi
repositoryhttps://github.com/digitaljokerman/bevy_qoi
max_upload_size
id651421
size82,273
Alex K (DigitalJokerMan)

documentation

README

bevy_qoi

Bevy support for the QOI (Quite OK Image) format.

Usage

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();
}
Commit count: 5

cargo fmt