Blender_bevy_components_workflow
Blender_bevy_components_workflow copied to clipboard
Blenvy for Bevy: consider reducing visibility
Quite a few systems, components, etc. are currently pub, which would result in a quite brittle API due to frequent breaking changes. Consider making things pub(crate) where possible and #[non_exhaustive] when using pub.