diff options
| author | Sébastien Crozet <developer@crozet.re> | 2021-04-01 11:00:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-01 11:00:27 +0200 |
| commit | f8536e73fc092da5ded5c793d513c59296949aff (patch) | |
| tree | 50af9e4312b22ea2c1cabc0e6d80dc73e59b3104 /build | |
| parent | 4b637c66ca40695f97f1ebdc38965e0d83ac5934 (diff) | |
| parent | cc3f16eb85f23a86ddd9d182d967cb12acc32354 (diff) | |
| download | rapier-f8536e73fc092da5ded5c793d513c59296949aff.tar.gz rapier-f8536e73fc092da5ded5c793d513c59296949aff.tar.bz2 rapier-f8536e73fc092da5ded5c793d513c59296949aff.zip | |
Merge pull request #157 from dimforge/ccd
Implement Continuous Collision Detection
Diffstat (limited to 'build')
| -rw-r--r-- | build/rapier2d-f64/Cargo.toml | 4 | ||||
| -rw-r--r-- | build/rapier2d/Cargo.toml | 4 | ||||
| -rw-r--r-- | build/rapier3d-f64/Cargo.toml | 4 | ||||
| -rw-r--r-- | build/rapier3d/Cargo.toml | 4 |
4 files changed, 16 insertions, 0 deletions
diff --git a/build/rapier2d-f64/Cargo.toml b/build/rapier2d-f64/Cargo.toml index c6bc8f3..8924c40 100644 --- a/build/rapier2d-f64/Cargo.toml +++ b/build/rapier2d-f64/Cargo.toml @@ -29,6 +29,10 @@ wasm-bindgen = [ "instant/wasm-bindgen" ] serde-serialize = [ "nalgebra/serde-serialize", "parry2d-f64/serde-serialize", "serde", "bit-vec/serde", "arrayvec/serde" ] enhanced-determinism = [ "simba/libm_force", "parry2d-f64/enhanced-determinism", "indexmap" ] +# Feature used for development and debugging only. +# Do not enable this unless you are working on the engine internals. +dev-remove-slow-accessors = [] + [lib] name = "rapier2d_f64" path = "../../src/lib.rs" diff --git a/build/rapier2d/Cargo.toml b/build/rapier2d/Cargo.toml index fa73f4e..d936bb6 100644 --- a/build/rapier2d/Cargo.toml +++ b/build/rapier2d/Cargo.toml @@ -29,6 +29,10 @@ wasm-bindgen = [ "instant/wasm-bindgen" ] serde-serialize = [ "nalgebra/serde-serialize", "parry2d/serde-serialize", "serde", "bit-vec/serde", "arrayvec/serde" ] enhanced-determinism = [ "simba/libm_force", "parry2d/enhanced-determinism", "indexmap" ] +# Feature used for development and debugging only. +# Do not enable this unless you are working on the engine internals. +dev-remove-slow-accessors = [] + [lib] name = "rapier2d" path = "../../src/lib.rs" diff --git a/build/rapier3d-f64/Cargo.toml b/build/rapier3d-f64/Cargo.toml index e201811..49c0a35 100644 --- a/build/rapier3d-f64/Cargo.toml +++ b/build/rapier3d-f64/Cargo.toml @@ -29,6 +29,10 @@ wasm-bindgen = [ "instant/wasm-bindgen" ] serde-serialize = [ "nalgebra/serde-serialize", "parry3d-f64/serde-serialize", "serde", "bit-vec/serde" ] enhanced-determinism = [ "simba/libm_force", "parry3d-f64/enhanced-determinism" ] +# Feature used for development and debugging only. +# Do not enable this unless you are working on the engine internals. +dev-remove-slow-accessors = [] + [lib] name = "rapier3d_f64" path = "../../src/lib.rs" diff --git a/build/rapier3d/Cargo.toml b/build/rapier3d/Cargo.toml index 0a83872..aec823d 100644 --- a/build/rapier3d/Cargo.toml +++ b/build/rapier3d/Cargo.toml @@ -29,6 +29,10 @@ wasm-bindgen = [ "instant/wasm-bindgen" ] serde-serialize = [ "nalgebra/serde-serialize", "parry3d/serde-serialize", "serde", "bit-vec/serde" ] enhanced-determinism = [ "simba/libm_force", "parry3d/enhanced-determinism" ] +# Feature used for development and debugging only. +# Do not enable this unless you are working on the engine internals. +dev-remove-slow-accessors = [] + [lib] name = "rapier3d" path = "../../src/lib.rs" |
