LNXSDK/leenkx/blender/lnx/logicnode/postprocess/LN_get_ssr_settings.py

15 lines
527 B
Python
Raw Permalink Normal View History

2025-01-22 16:18:30 +01:00
from lnx.logicnode.lnx_nodes import *
class SSRGetNode(LnxLogicTreeNode):
"""Returns the SSR post-processing settings."""
bl_idname = 'LNSSRGetNode'
bl_label = 'Get SSR Settings'
lnx_version = 1
def lnx_init(self, context):
self.add_output('LnxFloatSocket', 'SSR Step')
self.add_output('LnxFloatSocket', 'SSR Step Min')
self.add_output('LnxFloatSocket', 'SSR Search')
self.add_output('LnxFloatSocket', 'SSR Falloff')
self.add_output('LnxFloatSocket', 'SSR Jitter')