Expand description
These are components used and modified during a simulation frame.
Modules§
- Helper types to ease bevy_rapier API usage, grouping often used together components through
bevy::ecs::query::QueryData
orbevy::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§
- Marker component for to access the default
ReadRapierContext
. - The set of colliders part of the simulation.
- This is a component applied to any entity containing a rapier handle component. The inner Entity referred to has the component
RapierContextSimulation
and others fromcrate::plugin::context
, responsible for handling its rapier data. - The sets of joints part of the simulation.
- The Rapier context, containing parts of the state of the physics engine, specific to the simulation step.
- The query pipeline, which performs scene queries (ray-casting, point projection, etc.)
- The set of rigid-bodies part of the simulation.
- Difference between simulation and rendering time