armory/blender/arm/logicnode/camera/LN_set_camera_fov.py

18 lines
634 B
Python

from arm.logicnode.arm_nodes import *
class SetCameraFovNode(ArmLogicTreeNode):
"""Set the camera's field of view."""
bl_idname = 'LNSetCameraFovNode'
bl_label = 'Set Camera FOV'
bl_description = 'Set the camera\'s field of view'
arm_version = 1
def init(self, context):
super(SetCameraFovNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Object')
self.add_input('NodeSocketFloat', 'FOV', default_value=0.85)
self.add_output('ArmNodeSocketAction', 'Out')
add_node(SetCameraFovNode, category=PKG_AS_CATEGORY)