forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class SSRSetNode(LnxLogicTreeNode):
|
||||
"""Set the SSR post-processing settings."""
|
||||
bl_idname = 'LNSSRSetNode'
|
||||
bl_label = 'Set SSR Settings'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketAction', 'In')
|
||||
self.add_input('LnxFloatSocket', 'SSR Step', default_value=0.04)
|
||||
self.add_input('LnxFloatSocket', 'SSR Step Min', default_value=0.05)
|
||||
self.add_input('LnxFloatSocket', 'SSR Search', default_value=5.0)
|
||||
self.add_input('LnxFloatSocket', 'SSR Falloff', default_value=5.0)
|
||||
self.add_input('LnxFloatSocket', 'SSR Jitter', default_value=0.6)
|
||||
|
||||
self.add_output('LnxNodeSocketAction', 'Out')
|
Reference in New Issue
Block a user