Open
Description
While working on #17194, I came across bevy_render::camera::camera
, which was linting clippy::module_inception
.
While I did put in a placeholder reason explaining the difference, I believe either bevy_render::camera
or bevy_render::camera::camera
should be renamed, as the current naming is confusing.
My suggestion would be to rename bevy_render::camera
to bevy_render::viewport
, as it appears to contain viewport-related stuff as a whole; compared to bevy_render::camera::camera
which only relates to the Camera
component.