shipyard_rapier3d 0.1.0

An integration with the physics engine rapier, for the shipard ECS.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "dim2")]
pub extern crate rapier2d as rapier;
#[cfg(feature = "dim3")]
pub extern crate rapier3d as rapier;

pub mod physics;

#[cfg(feature = "render")]
pub mod render;