From 5572226ac53ed364a7f9ed69493c59c3cdd05d3d Mon Sep 17 00:00:00 2001 From: Onek8 Date: Tue, 10 Jun 2025 20:02:59 +0000 Subject: [PATCH] t3du - Resolution post process --- .../postprocess/LN_get_resolution_settings.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 leenkx/blender/lnx/logicnode/postprocess/LN_get_resolution_settings.py diff --git a/leenkx/blender/lnx/logicnode/postprocess/LN_get_resolution_settings.py b/leenkx/blender/lnx/logicnode/postprocess/LN_get_resolution_settings.py new file mode 100644 index 0000000..bdc5ac8 --- /dev/null +++ b/leenkx/blender/lnx/logicnode/postprocess/LN_get_resolution_settings.py @@ -0,0 +1,12 @@ +from lnx.logicnode.lnx_nodes import * + +class ResolutionGetNode(LnxLogicTreeNode): + """Returns the resolution parameters. + """ + bl_idname = 'LNResolutionGetNode' + bl_label = 'Get Resolution Settings' + lnx_version = 1 + + def lnx_init(self, context): + self.add_output('LnxIntSocket', 'Size') + self.add_output('LnxIntSocket', 'Filter') \ No newline at end of file