bevy_rapid_qoi

Crates.iobevy_rapid_qoi
lib.rsbevy_rapid_qoi
version1.0.0
sourcesrc
created_at2022-08-26 10:38:08.872545
updated_at2022-08-26 10:40:56.524403
descriptionBevy support for the QOI (Quite OK Image) format, based on rapid_qoi
homepagehttps://github.com/celerysaltgames/bevy_rapid_qoi
repositoryhttps://github.com/celerysaltgames/bevy_rapid_qoi
max_upload_size
id652724
size92,271
Joffrey Bienvenu (Joffreybvn)

documentation

README

bevy_rapid_qoi

Latest Version Rust Documentation Crates.io Crates.io

Bevy support for the QOI (Quite OK Image) format. Fork of bevy_qoi based on the rapid_qoi crate.

Features

  • Enable Bevy to load QOI assets with the QOIAssetLoader.
  • Implement a QOIPlugin to register the asset loader more conveniently.

Quickstart

Add the QOIPlugin to your app, and you're good to go.

use bevy::prelude::*;
use bevy_rapid_qoi::QOIPlugin;

fn main() {
    App::new()
        .add_plugin(QOIPlugin)
        .run();
}

Compatibility matrix

Bevy bevy_rapid_qoi
0.8 1.0

Inspired by

Commit count: 12

cargo fmt