LNXSDK/leenkx/blender/lnx/logicnode/scene/LN_remove_scene_active.py
2025-01-22 16:18:30 +01:00

13 lines
362 B
Python

from lnx.logicnode.lnx_nodes import *
class RemoveActiveSceneNode(LnxLogicTreeNode):
"""Removes the active scene."""
bl_idname = 'LNRemoveActiveSceneNode'
bl_label = 'Remove Scene Active'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketAction', 'In')
self.add_output('LnxNodeSocketAction', 'Out')