bevyimageconfig

crates.io MIT/Apache 2.0 crates.io

Bevy plugin that automatically loads and applies image sampler settings for image assets from an accompanying configuration file.

Usage

Add the dependency to Cargo.toml:

toml bevy_image_config = "0.2"

Add the plugin to your app:

rust fn main() { App::new() .add_plugins(DefaultPlugins) .add_plugin(bevy_image_config::ImageConfigPlugin) // ..rest of app .run() } If you have an image file "imagefilename.imgext" and a configuration file "imagefilename.imgcfg" in the same directory, the plugin will automatically load and apply the settings from "imagefilename.imgcfg.ron" when you load "imagefilename.imgext".

The available settings are:

Examples

cargo run --example example