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

16 lines
562 B
Python
Raw Normal View History

2017-12-06 22:20:42 +01:00
from arm.logicnode.arm_nodes import *
class SetCameraFovNode(ArmLogicTreeNode):
"""Set the camera's field of view."""
2017-12-06 22:20:42 +01:00
bl_idname = 'LNSetCameraFovNode'
bl_label = 'Set Camera FOV'
bl_description = 'Set the camera\'s field of view'
2017-12-06 22:20:42 +01:00
def init(self, context):
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Object')
self.add_input('NodeSocketFloat', 'FOV', default_value=0.85)
self.add_output('ArmNodeSocketAction', 'Out')
2017-12-06 22:20:42 +01:00
add_node(SetCameraFovNode, category=PKG_AS_CATEGORY)