# Objective Many types in `bevy_render` implemented `Reflect` but were not registered. ## Solution Register all types in `bevy_render` that impl `Reflect`. This also registers additional dependent types (i.e. field types). > Note: Adding these dependent types would not be needed using something like #5781 😉 --- ## Changelog - Register missing `bevy_render` types in the `TypeRegistry`: - `camera::RenderTarget` - `globals::GlobalsUniform` - `texture::Image` - `view::ComputedVisibility` - `view::Visibility` - `view::VisibleEntities` - Register additional dependent types: - `view::ComputedVisibilityFlags` - `Vec<Entity>` |
||
|---|---|---|
| .. | ||
| basis.rs | ||
| dds.rs | ||
| fallback_image.rs | ||
| hdr_texture_loader.rs | ||
| image_texture_conversion.rs | ||
| image_texture_loader.rs | ||
| image.rs | ||
| ktx2.rs | ||
| mod.rs | ||
| texture_cache.rs | ||