armory/blender/arm/logicnode/native/LN_shutdown.py
2020-09-09 20:48:35 +02:00

13 lines
346 B
Python

from arm.logicnode.arm_nodes import *
class ShutdownNode(ArmLogicTreeNode):
"""Shutdown node"""
bl_idname = 'LNShutdownNode'
bl_label = 'Shutdown'
def init(self, context):
self.add_input('ArmNodeSocketAction', 'In')
self.add_output('ArmNodeSocketAction', 'Out')
add_node(ShutdownNode, category=PKG_AS_CATEGORY)