aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2024-04-14 18:59:08 +0200
committerSébastien Crozet <sebastien@crozet.re>2024-04-30 23:10:46 +0200
commitde5e871cd1a76d424c2fa49da776c14ddd6f533b (patch)
treecf0f10c30056e7bb29d2c4afd4157feacd7afa70 /src
parent2f1ce1887f8bc42dc4cf7bd45cf6992eb82e46d3 (diff)
downloadrapier-de5e871cd1a76d424c2fa49da776c14ddd6f533b.tar.gz
rapier-de5e871cd1a76d424c2fa49da776c14ddd6f533b.tar.bz2
rapier-de5e871cd1a76d424c2fa49da776c14ddd6f533b.zip
chore: rework vertical stacks demo
Diffstat (limited to 'src')
-rw-r--r--src/dynamics/integration_parameters.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dynamics/integration_parameters.rs b/src/dynamics/integration_parameters.rs
index 2788349..093ebe9 100644
--- a/src/dynamics/integration_parameters.rs
+++ b/src/dynamics/integration_parameters.rs
@@ -1,6 +1,8 @@
use crate::math::Real;
use std::num::NonZeroUsize;
+// TODO: enabling the block solver in 3d introduces a lot of jitters in
+// the 3D domino demo. So for now we dont enable it in 3D.
pub(crate) static BLOCK_SOLVER_ENABLED: bool = cfg!(feature = "dim2");
pub(crate) static DISABLE_FRICTION_LIMIT_REAPPLY: bool = false;