Explorar o código

Merge pull request #5698 from a-carvallo/fix-arcRotateCamera-upperBetaLimit

Change upperBetaLimit to avoid weird behaviours when beta is PI
David Catuhe %!s(int64=6) %!d(string=hai) anos
pai
achega
014f937270
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/Cameras/babylon.arcRotateCamera.ts

+ 1 - 1
src/Cameras/babylon.arcRotateCamera.ts

@@ -91,7 +91,7 @@ module BABYLON {
          * This can help limiting how the Camera is able to move in the scene.
          */
         @serialize()
-        public upperBetaLimit = Math.PI;
+        public upperBetaLimit = Math.PI - 0.01;
 
         /**
          * Minimum allowed distance of the camera to the target (The camera can not get closer).