armory/blender/arm/logicnode/postprocess/LN_get_bloom_settings.py
2020-10-27 19:44:37 +01:00

14 lines
462 B
Python

from arm.logicnode.arm_nodes import *
class BloomGetNode(ArmLogicTreeNode):
"""Returns the bloom post-processing settings."""
bl_idname = 'LNBloomGetNode'
bl_label = 'Get Bloom Settings'
arm_version = 1
def init(self, context):
super(BloomGetNode, self).init(context)
self.add_output('NodeSocketFloat', 'Threshold')
self.add_output('NodeSocketFloat', 'Strength')
self.add_output('NodeSocketFloat', 'Radius')