11 lines
291 B
Python
11 lines
291 B
Python
|
from lnx.logicnode.lnx_nodes import *
|
||
|
|
||
|
class NavigableLocationNode(LnxLogicTreeNode):
|
||
|
"""TO DO."""
|
||
|
bl_idname = 'LNNavigableLocationNode'
|
||
|
bl_label = 'Navigable Location'
|
||
|
lnx_version = 1
|
||
|
|
||
|
def lnx_init(self, context):
|
||
|
self.add_output('LnxDynamicSocket', 'Location')
|