forked from LeenkxTeam/LNXSDK
Add leenkx/blender/lnx/logicnode/LN_set_auto_exposure_settings.py
This commit is contained in:
@ -0,0 +1,14 @@
|
|||||||
|
from lnx.logicnode.lnx_nodes import *
|
||||||
|
|
||||||
|
class AutoExposureSetNode(LnxLogicTreeNode):
|
||||||
|
"""Set the sharpen post-processing settings."""
|
||||||
|
bl_idname = 'LNAutoExposureSetNode'
|
||||||
|
bl_label = 'Set Auto Exposure Settings'
|
||||||
|
lnx_version = 1
|
||||||
|
|
||||||
|
def lnx_init(self, context):
|
||||||
|
self.add_input('LnxNodeSocketAction', 'In')
|
||||||
|
self.add_input('LnxFloatSocket', 'Strength', default_value=1)
|
||||||
|
self.add_input('LnxFloatSocket', 'Speed', default_value=1)
|
||||||
|
|
||||||
|
self.add_output('LnxNodeSocketAction', 'Out')
|
Reference in New Issue
Block a user