From de5e871cd1a76d424c2fa49da776c14ddd6f533b Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 14 Apr 2024 18:59:08 +0200 Subject: chore: rework vertical stacks demo --- src/dynamics/integration_parameters.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/dynamics/integration_parameters.rs') 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; -- cgit