forked from LeenkxTeam/LNXSDK
11 lines
298 B
Python
11 lines
298 B
Python
from lnx.logicnode.lnx_nodes import *
|
|
|
|
class SelfObjectNode(LnxLogicTreeNode):
|
|
"""Returns the object that owns the trait."""
|
|
bl_idname = 'LNSelfNode'
|
|
bl_label = 'Self Object'
|
|
lnx_version = 1
|
|
|
|
def lnx_init(self, context):
|
|
self.add_output('LnxNodeSocketObject', 'Object')
|