bevy/release-content/migration-guides/remove_bundle_register_required_components.md
Giacomo Stevanato 8e89511e47
Remove Bundle::register_required_components (#19967)
# Objective

- `Bundle::register_required_components` is not used anywhere, let's
remove it
2025-07-06 18:15:28 +00:00

360 B

title pull_requests
Remove Bundle::register_required_components
19967

This method was effectively dead-code as it was never used by the ECS to compute required components, hence it was removed. if you were overriding its implementation you can just remove it, as it never did anything. If you were using it in any other way, please open an issue.