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

17 lines
579 B
Python
Raw Normal View History

2017-12-06 22:20:42 +01:00
from arm.logicnode.arm_nodes import *
class SetCameraFovNode(ArmLogicTreeNode):
2020-09-23 22:12:25 +02:00
"""Use to set the FOV of a camera."""
2017-12-06 22:20:42 +01:00
bl_idname = 'LNSetCameraFovNode'
bl_label = 'Set Camera FOV'
arm_version = 1
2017-12-06 22:20:42 +01:00
def init(self, context):
super(SetCameraFovNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
2020-09-20 20:10:01 +02:00
self.add_input('ArmNodeSocketObject', 'Camera')
2020-09-08 21:49:02 +02:00
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)