Pārlūkot izejas kodu

dont accumulate tiny translation (#28662)

ycw 1 gadu atpakaļ
vecāks
revīzija
9bc84141dc
1 mainītis faili ar 5 papildinājumiem un 1 dzēšanām
  1. 5 1
      examples/games_fps.html

+ 5 - 1
examples/games_fps.html

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