Browse Source

don't change camera lens in oobe mode

David Rose 21 years ago
parent
commit
67957807b6
1 changed files with 4 additions and 1 deletions
  1. 4 1
      direct/src/showbase/ShowBase.py

+ 4 - 1
direct/src/showbase/ShowBase.py

@@ -1377,7 +1377,10 @@ class ShowBase(DirectObject.DirectObject):
             self.oobeTrackball.node().setMat(mat)
 
             self.cam.reparentTo(self.oobeCameraTrackball)
-            self.camNode.setLens(self.oobeLens)
+
+            # Don't change the camera lens--keep it with the original lens.
+            #self.camNode.setLens(self.oobeLens)
+            
             if self.oobeVis:
                 self.oobeVis.reparentTo(self.camera)
             self.oobeMode = 1