forked from LeenkxTeam/LNXSDK
12 lines
288 B
Python
12 lines
288 B
Python
|
|
from lnx.logicnode.lnx_nodes import *
|
||
|
|
|
||
|
|
class GetAssetsNode(LnxLogicTreeNode):
|
||
|
|
""""""
|
||
|
|
bl_idname = 'LNGetAssetsNode'
|
||
|
|
bl_label = 'Get Assets'
|
||
|
|
lnx_section = 'Assets'
|
||
|
|
lnx_version = 1
|
||
|
|
|
||
|
|
def lnx_init(self, context):
|
||
|
|
self.add_output('LnxNodeSocketArray', 'Assets')
|