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

16 lines
476 B
Python

from arm.logicnode.arm_nodes import *
class BloomGetNode(ArmLogicTreeNode):
"""Get Bloom Effect"""
bl_idname = 'LNBloomGetNode'
bl_label = 'Get Bloom'
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')
add_node(BloomGetNode, category=PKG_AS_CATEGORY)