Crate bevy_mod_index
source ·Expand description
A crate that allows using indexes to efficiently query for components by their values in the game engine Bevy.
To use indexes, include the Index
[SystemParam
][bevy::ecs::system::SystemParam] as an argument to your systems.
Index is generic over IndexInfo, which is
a trait that you must implement on your own types to define the behavior of the index.
Modules
- Main index logic.
- Commonly used types.
- Various types of storage for maintaining indexes.