forked from Onek8/LNXSDK
14 lines
365 B
Python
14 lines
365 B
Python
from lnx.logicnode.lnx_nodes import *
|
|
|
|
|
|
class KromSavePathNode(LnxLogicTreeNode):
|
|
"""Returns the save path for the application."""
|
|
bl_idname = 'LNKromSavePathNode'
|
|
bl_label = 'Save Path'
|
|
lnx_category = 'Krom Runtime'
|
|
lnx_section = 'system'
|
|
lnx_version = 1
|
|
|
|
def lnx_init(self, context):
|
|
self.add_output('LnxStringSocket', 'Path')
|