armory/blender/arm/logicnode/logic/LN_sequence.py

25 lines
779 B
Python
Raw Normal View History

2017-04-11 11:28:22 +02:00
from arm.logicnode.arm_nodes import *
class SequenceNode(ArmLogicTreeNode):
2020-09-08 23:14:51 +02:00
"""Sequence node"""
2017-04-11 11:28:22 +02:00
bl_idname = 'LNSequenceNode'
bl_label = 'Sequence'
2020-08-07 19:03:29 +02:00
bl_icon = 'NONE'
2017-04-11 11:28:22 +02:00
def __init__(self):
array_nodes[str(id(self))] = self
2017-04-11 11:28:22 +02:00
def init(self, context):
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
2017-04-11 11:28:22 +02:00
def draw_buttons(self, context, layout):
row = layout.row(align=True)
op = row.operator('arm.node_add_output', text='New', icon='PLUS', emboss=True)
op.node_index = str(id(self))
op.socket_type = 'ArmNodeSocketAction'
op2 = row.operator('arm.node_remove_output', text='', icon='X', emboss=True)
op2.node_index = str(id(self))
add_node(SequenceNode, category=MODULE_AS_CATEGORY, section='flow')