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

16 lines
501 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'
2020-10-27 19:44:37 +01:00
arm_section = 'flow'
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')