
# Objective Wireframes are currently supported for 3D meshes using the `WireframePlugin` in `bevy_pbr`. This PR adds the same functionality for 2D meshes. Closes #5881. ## Solution Since there's no easy way to share material implementations between 2D, 3D, and UI, this is mostly a straight copy and rename from the original plugin into `bevy_sprite`. <img width="1392" alt="image" src="https://github.com/bevyengine/bevy/assets/3961616/7aca156f-448a-4c7e-89b8-0a72c5919769"> --- ## Changelog - Added `Wireframe2dPlugin` and related types to support 2D wireframes. - Added an example to demonstrate how to use 2D wireframes --------- Co-authored-by: IceSentry <IceSentry@users.noreply.github.com>
10 lines
151 B
Rust
10 lines
151 B
Rust
mod color_material;
|
|
mod material;
|
|
mod mesh;
|
|
mod wireframe2d;
|
|
|
|
pub use color_material::*;
|
|
pub use material::*;
|
|
pub use mesh::*;
|
|
pub use wireframe2d::*;
|