armory/blender/arm/logicnode/camera/LN_get_camera_fov.py
2020-10-05 14:55:56 -03:00

17 lines
504 B
Python

from arm.logicnode.arm_nodes import *
class GetCameraFovNode(ArmLogicTreeNode):
"""Returns the field of view (FOV) of the given camera.
@seeNode Set Camera FOV"""
bl_idname = 'LNGetCameraFovNode'
bl_label = 'Get Camera FOV'
arm_version = 1
def init(self, context):
super(GetCameraFovNode, self).init(context)
self.add_input('ArmNodeSocketObject', 'Object')
self.add_output('NodeSocketFloat', 'FOV')
add_node(GetCameraFovNode, category=PKG_AS_CATEGORY)