diff --git a/leenkx/blender/lnx/logicnode/postprocess/LN_get_volumetric_fog_settings.py b/leenkx/blender/lnx/logicnode/postprocess/LN_get_volumetric_fog_settings.py new file mode 100644 index 0000000..95150f2 --- /dev/null +++ b/leenkx/blender/lnx/logicnode/postprocess/LN_get_volumetric_fog_settings.py @@ -0,0 +1,12 @@ +from lnx.logicnode.lnx_nodes import * + +class VolumetricFogGetNode(LnxLogicTreeNode): + """Returns the volumetric fog post-processing settings.""" + bl_idname = 'LNVolumetricFogGetNode' + bl_label = 'Get Volumetric Fog Settings' + lnx_version = 1 + + def lnx_init(self, context): + self.add_output('LnxColorSocket', 'Color') + self.add_output('LnxFloatSocket', 'Amount A') + self.add_output('LnxFloatSocket', 'Amount B') \ No newline at end of file