15 lines
568 B
Python
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')
|