Files
LNXSDK/leenkx/blender/lnx/logicnode/krom/LN_save_path.py
2026-07-13 15:44:52 -07:00

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')