We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0792a9a commit ba09058Copy full SHA for ba09058
crates/bevy_scene/src/dynamic_scene_builder.rs
@@ -132,7 +132,7 @@ impl<'w> DynamicSceneBuilder<'w> {
132
.get_info(component_id)
133
.and_then(|info| type_registry.get(info.type_id().unwrap()))
134
.and_then(|registration| registration.data::<ReflectComponent>())
135
- .and_then(|reflect_component| reflect_component.reflect(entity));
+ .and_then(|reflect_component| reflect_component.reflect(&entity));
136
137
if let Some(reflect_component) = reflect_component {
138
entry.components.push(reflect_component.clone_value());
0 commit comments