# Bevy Transform Gizmo **Simple 3D transform gizmo for bevy** https://user-images.githubusercontent.com/2632925/183512583-a8d2b2de-4997-45bb-9565-0a86c06cda90.mp4 [![crates.io](https://img.shields.io/crates/v/bevy_transform_gizmo)](https://crates.io/crates/bevy_transform_gizmo) [![docs.rs](https://docs.rs/bevy_transform_gizmo/badge.svg)](https://docs.rs/bevy_transform_gizmo) [![CI](https://github.com/ForesightMiningSoftwareCorporation/bevy_transform_gizmo/workflows/CI/badge.svg?branch=main)](https://github.com/ForesightMiningSoftwareCorporation/bevy_transform_gizmo/actions?query=workflow%3A%22CI%22+branch%3Amain) [![Bevy tracking](https://img.shields.io/badge/Bevy%20tracking-main-lightblue)](https://github.com/bevyengine/bevy/blob/main/docs/plugins_guidelines.md#main-branch-tracking)

Demo

Run a minimal implementation of the gizmo by cloning this repository and running:

shell cargo run --example minimal

Features

Usage

This plugin is built on and relies on bevy_mod_picking for 3d mouse interaction with the scene.

Add the plugin to the [dependencies] in Cargo.toml

toml bevy_transform_gizmo = "0.2"

You will need to add the transform gizmo plugin, as well as make sure you have also brought in the picking plugin.

rust .add_plugins(bevy_mod_picking::DefaultPickingPlugins) .add_plugin(bevy_transform_gizmo::TransformGizmoPlugin::default())

Next, you will need to mark your picking camera as your gizmo camera:

rust .insert_bundle(bevy_mod_picking::PickingCameraBundle::default()) .insert(bevy_transform_gizmo::GizmoPickSource::default());

Finally, mark any meshes you want to be transformed with the gizmo; note they must also be selectable in the picking plugin:

rust .insert_bundle(bevy_mod_picking::PickableBundle::default()) .insert(bevy_transform_gizmo::GizmoTransformable);

See the minimal demo for an example of a minimal implementation.

License

bevytransformgizmo 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 Transform Gizmo is sponsored by Foresight Mining Software Corporation.

Foresight Mining Software Corporation