diff options
| author | Sébastien Crozet <developer@crozet.re> | 2024-04-14 18:59:08 +0200 |
|---|---|---|
| committer | Sébastien Crozet <sebastien@crozet.re> | 2024-04-30 23:10:46 +0200 |
| commit | de5e871cd1a76d424c2fa49da776c14ddd6f533b (patch) | |
| tree | cf0f10c30056e7bb29d2c4afd4157feacd7afa70 /src | |
| parent | 2f1ce1887f8bc42dc4cf7bd45cf6992eb82e46d3 (diff) | |
| download | rapier-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.rs | 2 |
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; |
