소스 검색

#8820 -Fixed exporter using the focal length of the camera, instead of the FOV-angle (#9328)

Benjamin Cid Pérez 9 년 전
부모
커밋
3d66d1e93a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      utils/exporters/blender/addons/io_three/exporter/api/camera.py

+ 1 - 1
utils/exporters/blender/addons/io_three/exporter/api/camera.py

@@ -74,7 +74,7 @@ def fov(camera):
 
     """
     logger.debug("camera.fov(%s)", camera)
-    return camera.lens
+    return camera.angle
 
 
 @_camera