@@ -210,7 +210,11 @@
}
- playerCollider.translate( result.normal.multiplyScalar( result.depth ) );
+ if ( result.depth >= 1e-10 ) {
+
+ playerCollider.translate( result.normal.multiplyScalar( result.depth ) );
+ }