Expand description
Helper types to ease bevy_rapier API usage, grouping often used together components
through bevy::ecs::query::QueryData or bevy::ecs::system::SystemParam to
avoid writing too much boilerplate: shorter parameters for your systems,
and pass less parameters to bey_rapier lower level functions.
Structsยง
- Rapier
Context - A helper struct to avoid passing too many parameters to most rapier functions. This helps with reducing boilerplate, at the (small) price of maybe getting too much information from the ECS.
- Rapier
Context Item - Automatically generated [
WorldQuery](:: bevy :: ecs::query::WorldQuery) item type forRapierContext, returned when iterating over query results. - Rapier
Context Mut - A helper struct to avoid passing too many parameters to most rapier functions. This helps with reducing boilerplate, at the (small) price of maybe getting too much information from the ECS.
- Rapier
Entity - Information needed to access the rapier data from an entity managed by rapier.
- Rapier
Entity Item - Automatically generated [
WorldQuery](:: bevy :: ecs::query::WorldQuery) item type forRapierEntity, returned when iterating over query results. - Read
Rapier Context - Utility
SystemParamto easily access every required components of aRapierContextimmutably. - Write
Rapier Context - Utility
SystemParamto easily access every required components of aRapierContextmutably.