Add leenkx/blender/lnx/logicnode/postprocess/LN_get_auto_exposure_settings.py

This commit is contained in:
Onek8 2025-06-02 19:21:53 +00:00
parent be06b222cb
commit 0d80f3fb6d

View File

@ -0,0 +1,11 @@
from lnx.logicnode.arm_nodes import *
class AutoExposureGetNode(LnxLogicTreeNode):
"""Returns the auto exposure post-processing settings."""
bl_idname = 'LNAutoExposureGetNode'
bl_label = 'Get Auto Exposure Settings'
lnx_version = 1
def lnx_init(self, context):
self.add_output('LnxFloatSocket', 'Strength')
self.add_output('LnxFloatSocket', 'Speed')