├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── clippy.toml ├── examples ├── README.md ├── basic.rs ├── collision.rs ├── events.rs ├── hierarchy.rs └── positions.rs ├── rustfmt.toml └── src ├── amethyst.rs ├── bodies.rs ├── colliders.rs ├── events.rs ├── lib.rs ├── parameters.rs └── systems ├── mod.rs ├── physics_stepper.rs ├── sync_bodies_from_physics.rs ├── sync_bodies_to_physics.rs ├── sync_colliders_to_physics.rs └── sync_parameters_to_physics.rs /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | Cargo.lock 3 | target 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/README.md -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | type-complexity-threshold = 500 -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/examples/basic.rs -------------------------------------------------------------------------------- /examples/collision.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/examples/collision.rs -------------------------------------------------------------------------------- /examples/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/examples/events.rs -------------------------------------------------------------------------------- /examples/hierarchy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/examples/hierarchy.rs -------------------------------------------------------------------------------- /examples/positions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/examples/positions.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/amethyst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/amethyst.rs -------------------------------------------------------------------------------- /src/bodies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/bodies.rs -------------------------------------------------------------------------------- /src/colliders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/colliders.rs -------------------------------------------------------------------------------- /src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/events.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/parameters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/parameters.rs -------------------------------------------------------------------------------- /src/systems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/systems/mod.rs -------------------------------------------------------------------------------- /src/systems/physics_stepper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/systems/physics_stepper.rs -------------------------------------------------------------------------------- /src/systems/sync_bodies_from_physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/systems/sync_bodies_from_physics.rs -------------------------------------------------------------------------------- /src/systems/sync_bodies_to_physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/systems/sync_bodies_to_physics.rs -------------------------------------------------------------------------------- /src/systems/sync_colliders_to_physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/systems/sync_colliders_to_physics.rs -------------------------------------------------------------------------------- /src/systems/sync_parameters_to_physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amethyst/specs-physics/HEAD/src/systems/sync_parameters_to_physics.rs --------------------------------------------------------------------------------