Add the dependency to Cargo.toml
:
toml
bevy_mod_ui_sprite = "0.1"
Add the plugin to your app:
```rust use bevymodui_sprite::*;
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(UiSpritePlugin) // ..rest of app .run() } ```
Then you can spawn a UiSpriteBundle:
rust
commands.spawn_bundle(UiSpriteBundle {
sprite: UiSprite(Vec2::splat(100.)),
transform: Transform::from_translation(Vec3::splat(100.)),
color: UiColor(Color::RED),
..Default::default()
});