armory/blender/arm/logicnode/action_group_output.py

16 lines
413 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'
2018-12-18 23:48:38 +01:00
bl_icon = 'QUESTION'
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')