12 releases (7 breaking)

0.8.1 Feb 24, 2024
0.7.0 Jul 11, 2023
0.6.0 Mar 25, 2023
0.4.0 Nov 13, 2022
0.1.4 Jan 26, 2022

#124 in Game dev

Download history 422/week @ 2023-12-06 430/week @ 2023-12-13 223/week @ 2023-12-20 205/week @ 2023-12-27 663/week @ 2024-01-03 479/week @ 2024-01-10 1094/week @ 2024-01-17 660/week @ 2024-01-24 609/week @ 2024-01-31 271/week @ 2024-02-07 339/week @ 2024-02-14 720/week @ 2024-02-21 583/week @ 2024-02-28 1113/week @ 2024-03-06 880/week @ 2024-03-13 429/week @ 2024-03-20

3,119 downloads per month
Used in bevy_fsl_box_frame

MIT/Apache

45KB
826 lines

Bevy Polyline

High performance instanced polyline rendering for bevy

https://user-images.githubusercontent.com/2632925/164312056-2812d46c-6111-40b8-bbb2-087f7ee9afb2.mp4

crates.io docs.rs CI Bevy tracking

About

Bevy Polyline is a plugin for Bevy Engine that adds instanced rendering of Polylines. The plugin comes courtesy of Foresight Mining Software Corporation who sponsor its creation and maintenance. Special thanks to mtsr for the initial implementation of this plugin.

Implementation

Bevy Polyline closely mimics the way Meshes are rendered in Bevy. It works internally by passing a minimal Instance Buffer to the GPU, containing only the line segment endpoints and then completely determines all vertex positions within the vertex shader, such that the triangles form a line that is rotated around it's longitudinal axis to face towards the camera. The shader code is based on this great tutorial by Rye Terrell.

Usage

See the minimal example for basic usage.

Transform

Polylines respect positioning through GlobalTransform, so you can position them directly, or through the use of a Transform hierarchy.

PolylineMaterial

Currently the main way of customizing a Polyline is by changing the PolylineMaterial, which, as can be seen above, has fields for width, color and perspective. width directly correlates to screen pixels in non-perspective mode. In perspective mode width gets divided by the w component of the homogeneous coordinate, meaning it corresponds to screen pixels at the near plane and becomes progressively smaller further away.

Aliasing/shimmering

Bevy Polyline does some work to reduce aliasing, by implementing the line thinness fade from https://acegikmo.com/shapes/docs/#anti-aliasing. But if your line segments are very short, you will still see shimmering, caused by triangles < 1 pixel in size. This can be reduced by only adding segments of a minimum length.

Performance

Due to instancing, Bevy Polyline only makes one drawcall per PolyLine, one for the line segments and one for the miter joins (not currently enabled). We've tested the nbody demo at some 500 lines with 4096 segments being updated every frame (in addition to a 4th order Yoshida integrator for the nbody simulation) running at 60fps. There is still some room for performance optimization, particularly reducing to one drawcall per Polyline (depending on join and cap types) and more efficient updates of the instance buffer for updated lines.

Bevy Version Support

We intend to track the main branch of Bevy. PRs supporting this are welcome!

bevy bevy_polyline
0.12 0.8
0.11 0.7
0.10 0.5, 0.6
0.9 0.4
0.8 0.3
0.7 0.2
0.6 0.1

Community Support

If you want some help using this plugin, you can ask in the Bevy Discord at https://discord.gg/bevy.

License

bevy_polyline is free and open source! All code in this repository is dual-licensed under either:

at your option. This means you can select the license you prefer! This dual-licensing approach is the de-facto standard in the Rust ecosystem and there are very good reasons to include both.

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.

Sponsors

The creation and maintenance of Bevy Polyline is sponsored by Foresight Mining Software Corporation.

Foresight Mining Software Corporation

Dependencies

~42–81MB
~1M SLoC