armory/blender/arm/logicnode/postprocess/LN_get_lenstexture_settings.py

16 lines
623 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class LenstextureGetNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the lens texture settings."""
bl_idname = 'LNLenstextureGetNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Lenstexture Settings'
arm_version = 1
def init(self, context):
super(LenstextureGetNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketFloat', 'Center Min Clip')
self.add_output('NodeSocketFloat', 'Center Max Clip')
self.add_output('NodeSocketFloat', 'Luminance Min')
self.add_output('NodeSocketFloat', 'Luminance Max')
self.add_output('NodeSocketFloat', 'Brightness Exponent')