12 lines
371 B
Python
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')
|