From 854ed621d98ae0ad8b57c2c9ead198f0a56925b7 Mon Sep 17 00:00:00 2001 From: devil-ira Date: Sun, 12 Mar 2023 00:32:15 +0100 Subject: [PATCH] Document `bevy_gizmos` feature --- Cargo.toml | 2 ++ docs/cargo_features.md | 1 + 2 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 6da2f652f8a09..9c536f674cb46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -98,6 +98,8 @@ bevy_ui = ["bevy_internal/bevy_ui"] # winit window and input backend bevy_winit = ["bevy_internal/bevy_winit"] + +# Adds support for rendering gizmos bevy_gizmos = ["bevy_internal/bevy_gizmos"] # Tracing support, saving a file in Chrome Tracing format diff --git a/docs/cargo_features.md b/docs/cargo_features.md index 7bc715695a853..aac27b3185381 100644 --- a/docs/cargo_features.md +++ b/docs/cargo_features.md @@ -18,6 +18,7 @@ The default feature set enables most of the expected features of a game engine, |bevy_audio|Provides audio functionality| |bevy_core_pipeline|Provides cameras and other basic render pipeline features| |bevy_gilrs|Adds gamepad support| +|bevy_gizmos|Adds support for rendering gizmos| |bevy_gltf|[glTF](https://www.khronos.org/gltf/) support| |bevy_pbr|Adds PBR rendering| |bevy_render|Provides rendering functionality|