# Visual Gizmos for Bevy Visual gizmos to aid with development and debugging in [Bevy](https://bevyengine.org/) [![dependency status](https://deps.rs/repo/github/LiamGallagher737/bevy_mod_gizmos/status.svg)](https://deps.rs/repo/github/LiamGallagher737/bevy_mod_gizmos) [![crates.io](https://img.shields.io/crates/v/bevy_mod_gizmos)](https://crates.io/crates/bevy_mod_gizmos) [![docs.rs](https://docs.rs/bevy_mod_gizmos/badge.svg)](https://docs.rs/bevy_mod_gizmos)

Setup

Add the following to your Cargo.toml toml bevy_mod_gizmos = "0.1.0"

Add this to any file you want to use gizmos in rs use bevy_mod_gizmos::*:

Add the plugin to your app rs .add_plugin(GizmosPlugin)

For interactive gizmos add the following when creating your camera rs .insert_bundle(GizmoInteractionCamera::default())

To increase performance I recommend the following in your Cargo.toml toml [profile.dev.package."*"] opt-level = 3

Usage

Render a single gizmo rs draw_gizmo(gizmo);

Render multiple gizmos and a connecting line rs draw_gizmos(vec![gizmo, gizmo, gizmo], true);

Render a line rs draw_line(points, color);

Gizmos

rs Gizmo::sphere(position, size, color) rs Gizmo::cube(position, size, color) rs Gizmo::cubiod(position, scale, color) rs Gizmo::capsule(position, width, height, color) rs Gizmo::torus(position, size, color) rs Gizmo::new(position, scale, color, mesh_handle)

More Info

License

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.