armory/blender/arm/logicnode/logic/LN_sequence.py
2020-09-28 15:58:41 +02:00

26 lines
866 B
Python

from arm.logicnode.arm_nodes import *
class SequenceNode(ArmLogicTreeNode):
"""Runs the outputs one by one sequentially and repeatedly."""
bl_idname = 'LNSequenceNode'
bl_label = 'Sequence'
arm_version = 1
def __init__(self):
array_nodes[str(id(self))] = self
def init(self, context):
super(SequenceNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
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=PKG_AS_CATEGORY, section='flow')