| Crates.io | bevy_arrows_plugin |
| lib.rs | bevy_arrows_plugin |
| version | 0.1.0 |
| created_at | 2025-04-16 07:49:49.337515+00 |
| updated_at | 2025-04-16 07:49:49.337515+00 |
| description | A Bevy plugin for drawing arrows next to components. Very WIP |
| homepage | https://github.com/danya02/bevy_arrows_plugin |
| repository | https://github.com/danya02/bevy_arrows_plugin |
| max_upload_size | |
| id | 1636096 |
| size | 166,112 |
A Bevy plugin for drawing arrows next to components.
Very WIP, do not rely on the API remaining stable.
To use, simply add the plugin to the app:
App::new().add_plugins(BevyArrowsPlugin)
Then, when spawning an entity, add the [VecArrow] component:
commands.spawn((
todo!(),
VecArrow::new(Vec3::new(2.0, 2.0, 0.0), TargetCoordinateSpace::Local)
.with_color(Color::linear_rgb(1.0, 1.0, 0.0)),
));