From b975d2fa7fbe399869030b6eeceb71502d331e1a Mon Sep 17 00:00:00 2001 From: mgi388 <135186256+mgi388@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:11:49 +1100 Subject: [PATCH] Fix associations for lights --- crates/bevy-inspector-egui/src/utils.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy-inspector-egui/src/utils.rs b/crates/bevy-inspector-egui/src/utils.rs index d3675881..f5f903c8 100644 --- a/crates/bevy-inspector-egui/src/utils.rs +++ b/crates/bevy-inspector-egui/src/utils.rs @@ -63,8 +63,8 @@ pub mod guess_entity_name { ("bevy_window::window::PrimaryWindow", "Primary Window"), ("bevy_core_pipeline::core_3d::camera_3d::Camera3d", "Camera3d"), ("bevy_core_pipeline::core_2d::camera_2d::Camera2d", "Camera2d"), - ("bevy_pbr::light::PointLight", "PointLight"), - ("bevy_pbr::light::DirectionalLight", "DirectionalLight"), + ("bevy_pbr::light::point_light::PointLight", "PointLight"), + ("bevy_pbr::light::directional_light::DirectionalLight", "DirectionalLight"), ("bevy_text::text::Text", "Text"), ("bevy_ui::ui_node::Node", "Node"), ("bevy_asset::handle::Handle", "Pbr Mesh"),