15 lines
527 B
Python
15 lines
527 B
Python
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')
|