Path: blob/main/release-content/migration-guides/internal_entities.md
6592 views
---
---
Bevy 0.17 introduces internal entities. Entities tagged by the Internal
component that are hidden from most queries using DefaultQueryFilters
.
Currently, both Observer
s and systems that are registered through World::register_system
are considered internal entities.
If you queried them before, add the Allow<Internal>
filter to the query to bypass the default filter.