From 85912d84fb9929108770fe31bc43d3497c1ade71 Mon Sep 17 00:00:00 2001 From: Onek8 Date: Mon, 2 Jun 2025 19:45:39 +0000 Subject: [PATCH] Add leenkx/blender/lnx/logicnode/postprocess/LN_set_volumetric_light_settings.py --- .../LN_set_volumetric_light_settings.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 leenkx/blender/lnx/logicnode/postprocess/LN_set_volumetric_light_settings.py diff --git a/leenkx/blender/lnx/logicnode/postprocess/LN_set_volumetric_light_settings.py b/leenkx/blender/lnx/logicnode/postprocess/LN_set_volumetric_light_settings.py new file mode 100644 index 0000000..860eaae --- /dev/null +++ b/leenkx/blender/lnx/logicnode/postprocess/LN_set_volumetric_light_settings.py @@ -0,0 +1,15 @@ +from lnx.logicnode.lnx_nodes import * + +class VolumetricLightSetNode(LnxLogicTreeNode): + """Set the volumetric light post-processing settings.""" + bl_idname = 'LNVolumetricLightSetNode' + bl_label = 'Set Volumetric Light Settings' + lnx_version = 1 + + def lnx_init(self, context): + self.add_input('LnxNodeSocketAction', 'In') + self.add_input('LnxColorSocket', 'Air Color', default_value=[1.0, 1.0, 1.0, 1.0]) + self.add_input('LnxFloatSocket', 'Air Turbidity', default_value=1) + self.add_input('LnxIntSocket', 'Steps', default_value=20) + + self.add_output('LnxNodeSocketAction', 'Out') \ No newline at end of file