bevy_liquidfun 0.1.0

A Bevy friendly wrapper of Box2D and LiquidFun.
Documentation
pub mod collision;
pub mod plugins;
pub mod utils;

pub(crate) mod internal;
pub mod schedule;

pub mod dynamics {
    mod body;
    mod joints {
        mod joint;
        pub use joint::*;

        mod revolute_joint;
        pub use revolute_joint::*;

        mod distance_joint;
        pub use distance_joint::*;

        mod motor_joint;
        pub use motor_joint::*;

        mod prismatic_joint;
        pub use prismatic_joint::*;

        mod weld_joint;
        pub use weld_joint::*;
    }
    mod contacts {
        mod contact_events;
        pub use contact_events::*;
        mod contact_listener;
        pub use contact_listener::*;
        mod contacts;
        pub use contacts::*;
    }
    mod fixture;
    mod ray_cast;
    mod world;

    pub use body::*;
    pub use contacts::*;
    pub use fixture::*;
    pub use joints::*;
    pub use ray_cast::*;
    pub use world::*;
}

pub mod particles {
    mod particle;
    pub use particle::*;
    mod particle_group;
    pub use particle_group::*;
    mod particle_system;
    pub use particle_system::*;
}
#[cfg(test)]
mod tests {}