amethyst_physics 0.2.0

The Amethyst Physics engine interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains common types that can be glob-imported (`*`) for convenience.

pub use crate::{
    objects::{
        CollisionGroup, PhysicsAreaTag, PhysicsAttachment, PhysicsGarbageCollector, PhysicsHandle,
        PhysicsJointTag, PhysicsRigidBodyTag, PhysicsShapeTag, PhysicsTag,
    },
    servers::{
        AreaPhysicsServerTrait, BodyMode, ContactEvent, JointDesc, JointPhysicsServerTrait,
        JointPosition, OverlapEvent, PhysicsWorld, RBodyPhysicsServerTrait, RigidBodyDesc,
        ShapeDesc, ShapePhysicsServerTrait, WorldPhysicsServerTrait,
    },
    PhysicsTime,
};