bevymodui_label

bevymodui_label

crates.io MIT/Apache 2.0 crates.io

Draw text anywhere with the Bevy UI.

Usage

Add the dependency to Cargo.toml:

toml bevy_mod_ui_label = "0.1.0"

Add the plugin to your 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 spawn a UiLabelBundle:

rust commands.spawn_bundle(UiLabelBundle { text: Text::from_section( "Hello, world", TextStyle { font: asset_loader.load("Topaz-8.ttf"), font_size: 32.0, color: Color::WHITE } ), transform: Transform::from_translation(Vec3::new(400., 300., 100.)), ..Default::default() });

Full Example

cargo --run --example hello_world