From 8173e7ada2e3f5c99de53b532adc085a26c1cefd Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Mon, 29 Mar 2021 14:54:54 +0200 Subject: Allow collider modification after its insersion to the ColliderSet. --- build/rapier2d-f64/Cargo.toml | 4 ++++ build/rapier2d/Cargo.toml | 4 ++++ build/rapier3d-f64/Cargo.toml | 4 ++++ build/rapier3d/Cargo.toml | 4 ++++ 4 files changed, 16 insertions(+) (limited to 'build') 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" -- cgit