forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
14
leenkx/blender/lnx/logicnode/camera/LN_get_camera_fov.py
Normal file
14
leenkx/blender/lnx/logicnode/camera/LN_get_camera_fov.py
Normal file
@ -0,0 +1,14 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class GetCameraFovNode(LnxLogicTreeNode):
|
||||
"""Returns the field of view (FOV) of the given camera.
|
||||
|
||||
@seeNode Set Camera FOV"""
|
||||
bl_idname = 'LNGetCameraFovNode'
|
||||
bl_label = 'Get Camera FOV'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketObject', 'Object')
|
||||
|
||||
self.add_output('LnxFloatSocket', 'FOV')
|
Reference in New Issue
Block a user