We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71204d2 commit 90a5e19Copy full SHA for 90a5e19
src/Settings.ts
@@ -137,7 +137,7 @@ export class Settings {
137
* to 1 often lead to overshoot.
138
*/
139
static baumgarte: number = 0.2;
140
- static toiBaugarte: number = 0.75;
+ static toiBaumgarte: number = 0.75;
141
142
// Sleep
143
src/dynamics/Contact.ts
@@ -732,7 +732,7 @@ export class Contact {
732
// Track max constraint error.
733
minSeparation = Math.min(minSeparation, separation);
734
735
- const baumgarte = toi ? Settings.toiBaugarte : Settings.baumgarte;
+ const baumgarte = toi ? Settings.toiBaumgarte : Settings.baumgarte;
736
const linearSlop = Settings.linearSlop;
737
const maxLinearCorrection = Settings.maxLinearCorrection;
738
0 commit comments