bevy_rapier3d 0.28.0

3-dimensional physics engine in Rust, official Bevy plugin.
Documentation
pub use self::configuration::{RapierConfiguration, SimulationToRenderTime, TimestepMode};
pub use self::context::{
    systemparams::{
        RapierContextAccess, ReadDefaultRapierContext, WriteDefaultRapierContext,
        WriteRapierContext,
    },
    DefaultRapierContext, RapierContext, RapierContextEntityLink,
};
pub use self::plugin::{
    NoUserData, PhysicsSet, RapierContextInitialization, RapierPhysicsPlugin,
    RapierTransformPropagateSet,
};
pub use narrow_phase::{ContactManifoldView, ContactPairView, ContactView, SolverContactView};

#[allow(clippy::type_complexity)]
#[allow(clippy::too_many_arguments)]
pub mod systems;

mod configuration;
mod context;
mod narrow_phase;
#[allow(clippy::module_inception)]
mod plugin;