Explorar o código

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

Benjamin Cid Pérez %!s(int64=9) %!d(string=hai) anos
pai
achega
3d66d1e93a

+ 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