From 2cc0d3db3b899fc353d633796630e9dd6f85ffd3 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Mon, 2 Jun 2025 19:38:01 +0000 Subject: [PATCH] Add leenkx/blender/lnx/logicnode/LN_get_volumetric_light_settings.py --- .../logicnode/LN_get_volumetric_light_settings.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 leenkx/blender/lnx/logicnode/LN_get_volumetric_light_settings.py diff --git a/leenkx/blender/lnx/logicnode/LN_get_volumetric_light_settings.py b/leenkx/blender/lnx/logicnode/LN_get_volumetric_light_settings.py new file mode 100644 index 0000000..c4ac0fd --- /dev/null +++ b/leenkx/blender/lnx/logicnode/LN_get_volumetric_light_settings.py @@ -0,0 +1,12 @@ +from lnx.logicnode.lnx_nodes import * + +class VolumetricLightGetNode(LnxLogicTreeNode): + """Returns the volumetric light post-processing settings.""" + bl_idname = 'LNVolumetricLightGetNode' + bl_label = 'Get Volumetric Light Settings' + lnx_version = 1 + + def lnx_init(self, context): + self.add_output('LnxColorSocket', 'Air Color') + self.add_output('LnxFloatSocket', 'Air Turbidity') + self.add_output('LnxIntSocket', 'Steps') \ No newline at end of file