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

13 lines
461 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class ChromaticAberrationGetNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the chromatic aberration post-processing settings."""
bl_idname = 'LNChromaticAberrationGetNode'
2020-09-29 18:38:17 +02:00
bl_label = 'Get CA Settings'
arm_version = 1
def init(self, context):
super(ChromaticAberrationGetNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketFloat', 'Strength')
self.add_output('NodeSocketFloat', 'Samples')