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

14 lines
462 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class BloomGetNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the bloom post-processing settings."""
bl_idname = 'LNBloomGetNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Bloom Settings'
arm_version = 1
def init(self, context):
super(BloomGetNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketFloat', 'Threshold')
self.add_output('NodeSocketFloat', 'Strength')
self.add_output('NodeSocketFloat', 'Radius')