Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
render: Export specific items outside of prelude (#473)
It's a preference of some people to not use prelude modules at all in order to make their imports more explicit. Currently, items like `Camera3dComponent` are only exported in a prelude module, making an explicit import look like `use bevy::prelude::Camera3dComponent` which feels a bit hackish. This change doesn't remove such components from the prelude, but just re-exports them at the crate's (`bevy_render` in this case) root.
- Loading branch information