Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/celerysaltgames/bevy_rapid_qoi
Bevy support for the QOI (Quite OK Image) format.
https://github.com/celerysaltgames/bevy_rapid_qoi
assets bevy bevy-plugin qoi
Last synced: 3 months ago
JSON representation
Bevy support for the QOI (Quite OK Image) format.
- Host: GitHub
- URL: https://github.com/celerysaltgames/bevy_rapid_qoi
- Owner: celerysaltgames
- License: mit
- Fork: true (DigitalJokerMan/bevy_qoi)
- Created: 2022-08-26T09:15:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-11T14:21:57.000Z (about 1 year ago)
- Last Synced: 2024-09-15T19:13:59.086Z (3 months ago)
- Topics: assets, bevy, bevy-plugin, qoi
- Language: Rust
- Homepage: https://crates.io/crates/bevy_rapid_qoi
- Size: 30.3 KB
- Stars: 2
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bevy_rapid_qoi
[![Latest Version](https://img.shields.io/crates/v/bevy_rapid_qoi.svg)](https://crates.io/crates/bevy_rapid_qoi)
[![Rust Documentation](https://docs.rs/bevy_rapid_qoi/badge.svg)](https://docs.rs/bevy_rapid_qoi)
![Crates.io](https://img.shields.io/crates/l/bevy_rapid_qoi)
![Crates.io](https://img.shields.io/crates/d/bevy_rapid_qoi)Bevy support for the QOI (Quite OK Image) format. Fork of [bevy_qoi](https://github.com/DigitalJokerMan/bevy_qoi) based on the [rapid_qoi](https://crates.io/crates/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.
```rs
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
- The [Bevy Qoi](https://crates.io/crates/bevy_qoi) plugin.
- The excellent [Rapid QOI](https://crates.io/crates/rapid-qoi) implementation of QOI in Rust.