LNXSDK/leenkx/blender/lnx/logicnode/scene/LN_global_object.py
2025-01-22 16:18:30 +01:00

12 lines
371 B
Python

from lnx.logicnode.lnx_nodes import *
class GlobalObjectNode(LnxLogicTreeNode):
"""Gives access to a global object which can be used to share
information between different traits."""
bl_idname = 'LNGlobalObjectNode'
bl_label = 'Global Object'
lnx_version = 1
def lnx_init(self, context):
self.add_output('LnxNodeSocketObject', 'Object')