Billboard text and texture support for bevy
| Bevy Version | Crate Version |
|--------------|---------------|
| 0.9
| 0.1
|
Text:
rs
commands.spawn(BillboardTextBundle {
transform: Transform::from_translation(Vec3::new(0., 2., 0.))
.with_scale(Vec3::splat(0.0085)),
text: Text::from_sections([
TextSection {
value: "IMPORTANT".to_string(),
style: TextStyle {
font_size: 60.0,
font: fira_sans_regular_handle.clone(),
color: Color::ORANGE,
}
},
TextSection {
value: " text".to_string(),
style: TextStyle {
font_size: 60.0,
font: fira_sans_regular_handle.clone(),
color: Color::WHITE,
}
}
]).with_alignment(TextAlignment::CENTER),
..default()
});
Texture:
rs
fn spawn_billboard_texture(
mut billboard_textures: ResMut<Assets<BillboardTexture>>,
// rest
) {
.spawn(BillboardTextureBundle {
transform: Transform::from_translation(Vec3::new(0., 5., 0.)),
texture: billboard_textures.add(BillboardTexture::Single(image_handle.clone()),
mesh: meshes.add(Quad::new(Vec2::new(4.0, 4.0)).into()).into(),
..default()
});
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.