bevy_debug_lines
A prototype plugin providing a simple line drawing api for bevy.
See docs.rs for documentation.
Expect breakage on master.
Click on the above demo to play it.
About
This plugin uses a shader and sends individual points to the GPU, which then moves geometry to make a line. This is quite fast with a significant number of lines, and there is no added cost to moving lines around.
Usage
Add bevy_prototype_debug_lines
to your Cargo.toml
:
[]
= "0.2.0"
Add the plugin in your App::build()
phase:
use *;
use *;
Draw a line in whatever system you have using the DebugLines
resource:
See the examples for more complete usage examples.
Running Examples
You can run the examples like so:
cargo run --example 3d --features="example_deps"
Where 3d
is one of the files in the examples
Notes and Missing Stuff
This plugin is incomplete, so there are some things missing and general annoyances:
- More gracefully handle exceeding max lines (
128000
). - More, I'm sure...
Let me know if you have any requests, improvements, or suggestions on how to make this crate more ergonomic.