armory/blender/arm/logicnode/action_group_output.py

16 lines
409 B
Python
Raw Normal View History

2017-04-08 00:34:45 +02:00
import bpy
from bpy.props import *
from bpy.types import Node, NodeSocket
from arm.logicnode.arm_nodes import *
class GroupOutputNode(Node, ArmLogicTreeNode):
'''Group output node'''
bl_idname = 'LNGroupOutputNode'
2017-11-27 00:13:37 +01:00
bl_label = 'Node Group Output'
2020-08-07 18:58:19 +02:00
bl_icon = 'NONE'
2017-04-08 00:34:45 +02:00
def init(self, context):
2017-04-08 20:05:35 +02:00
self.inputs.new('ArmNodeSocketAction', 'In')
2017-04-08 00:34:45 +02:00
2017-04-08 20:05:35 +02:00
add_node(GroupOutputNode, category='Action')