Expand description
Bevy integration for the boxdd Box2D bindings.
The core boxdd crate stays engine-agnostic. This crate owns the Bevy-specific
plugin, ECS components, resources, systems, and examples.
Re-exports§
pub use plugin::BoxddPhysicsPlugin;pub use boxdd;pub use components::*;pub use math::*;pub use messages::*;pub use resources::*;
Modules§
- components
- Bevy ECS components used to author and observe Box2D physics objects.
- errors
- Internal error reporting helpers for plugin systems.
- math
- Bevy math adapters for
boxddvalue types. - messages
- Bevy messages emitted by the physics plugin.
- plugin
- Bevy plugin wiring for
boxddfixed-step physics. - prelude
- Common imports for Bevy applications using
bevy_boxdd. - resources
- Bevy resources that own the native physics world and plugin settings.
- systems
- Fixed-update systems registered by
crate::BoxddPhysicsPlugin.