Files
LNXSDK/leenkx/blender/lnx/logicnode/postprocess/LN_get_resolution_settings.py

12 lines
362 B
Python
Raw Normal View History

2025-06-10 20:02:59 +00:00
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')