LNXSDK/leenkx/blender/lnx/logicnode/postprocess/LN_get_lenstexture_settings.py
2025-01-22 16:18:30 +01:00

15 lines
568 B
Python

from lnx.logicnode.lnx_nodes import *
class LenstextureGetNode(LnxLogicTreeNode):
"""Returns the lens texture settings."""
bl_idname = 'LNLenstextureGetNode'
bl_label = 'Get Lenstexture Settings'
lnx_version = 1
def lnx_init(self, context):
self.add_output('LnxFloatSocket', 'Center Min Clip')
self.add_output('LnxFloatSocket', 'Center Max Clip')
self.add_output('LnxFloatSocket', 'Luminance Min')
self.add_output('LnxFloatSocket', 'Luminance Max')
self.add_output('LnxFloatSocket', 'Brightness Exponent')