Bevy plugin that automatically loads and applies image sampler settings for image assets from an accompanying configuration file.
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:
ClampToEdge | Repeat | MirrorRepeat | ClampToBorder
Nearest | Linear
f32
,f32
,
Option of Never | Less | Equal | LessEqual | Greater | NotEqual | GreaterEqual | Always
Option<NonZeroU8>
,
Option of TransparentBlack | OpaqueBlack | OpaqueWhite | Zero
cargo run --example example