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 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ยง

index
Main index logic.
prelude
Commonly used types.
refresh_policy
Policy definitions and utilities for automatically refreshing indexes.
storage
Various types of storage for maintaining indexes.