DigitalJokerMan / bevy_qoi

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

Home Page:https://crates.io/crates/bevy_qoi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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();
}

About

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

https://crates.io/crates/bevy_qoi

License:MIT License


Languages

Language:Rust 100.0%