From 936244706528147ad0f3ba87600610b067204bc0 Mon Sep 17 00:00:00 2001 From: Victor Bjelkholm Date: Sun, 14 Jul 2024 15:33:11 +0200 Subject: [PATCH] egui_backend -> backend_egui in egui.rs example Turned the backend<>egui around as the feature's name is backend_egui and not backend_egui, see https://docs.rs/crate/bevy_mod_picking/0.20.1/features --- examples/egui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/egui.rs b/examples/egui.rs index 1b9a1846..e6b04f6b 100644 --- a/examples/egui.rs +++ b/examples/egui.rs @@ -1,6 +1,6 @@ //! This example demonstrates how backends can be mixed and matched, specifically with egui. Here, //! we are using the egui backend, which is enabled automatically in `DefaultPickingPlugins` when -//! the "egui_backend" feature is enabled. The egui backend will automatically apply a `NoDeselect` +//! the "backend_egui" feature is enabled. The egui backend will automatically apply a `NoDeselect` //! component to the egui entity, which allows you to interact with the UI without deselecting //! anything in the 3d scene.