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

26 lines
853 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-23 22:12:25 +02:00
"""Runs the outputs one per time sequentially."""
2017-04-11 11:28:22 +02:00
bl_idname = 'LNSequenceNode'
bl_label = 'Sequence'
arm_version = 1
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):
super(SequenceNode, self).init(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=PKG_AS_CATEGORY, section='flow')