Draw text anywhere at any depth and orientation with the Bevy UI.
Add the dependency to Cargo.toml
:
toml
bevy_mod_ui_label = "0.2.4"
Add the plugin to your Bevy app:
```rust use bevymodui_label::*;
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(UiLabelPlugin) // ..rest of app .run() } ```
Don't forget a camera:
rust
commands.spawn_bundle(Camera2dBundle::default());
Then you can draw text by spawning a UiLabelBundle:
rust
commands.spawn_bundle(UiLabelBundle {
label: UiLabel(Text {
sections: vec![TextSection {
value: "Hello, world".to_string(),
style: TextStyle {
font: asset_loader.load("Topaz-8.ttf"),
font_size: 32.0,
color: Color::WHITE
},
}],
alignment: TextAlignment::CENTER,
}),
transform: Transform {
translation: Vec3::new(400., 300., 100.),
rotation: Quat::from_rotation_z(8f32.recip() * std::f32::consts::PI),
..Default::default()
},
..Default::default()
});
cargo --run --example hello_world
cargo --run --example depth