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

18 lines
544 B
Python
Raw Normal View History

2017-04-11 11:28:22 +02:00
from arm.logicnode.arm_nodes import *
class AlternateNode(ArmLogicTreeNode):
2020-10-26 15:32:59 +01:00
"""Activates the outputs "0" and "1" alternating every time it is active."""
2017-04-11 11:28:22 +02:00
bl_idname = 'LNAlternateNode'
bl_label = 'Alternate'
arm_version = 1
2017-04-11 11:28:22 +02:00
def init(self, context):
super(AlternateNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_output('ArmNodeSocketAction', '0')
self.add_output('ArmNodeSocketAction', '1')
2017-04-11 11:28:22 +02:00
add_node(AlternateNode, category=PKG_AS_CATEGORY, section='flow')