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

16 lines
464 B
Python
Raw Permalink Normal View History

2017-04-11 11:28:22 +02:00
from arm.logicnode.arm_nodes import *
class AlternateNode(ArmLogicTreeNode):
2020-11-17 16:01:15 +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'
2020-10-30 19:28:38 +01:00
bl_label = 'Alternate Output'
2020-10-27 19:44:37 +01:00
arm_section = 'flow'
arm_version = 1
2021-07-20 20:53:22 +02:00
def arm_init(self, context):
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', '0')
self.add_output('ArmNodeSocketAction', '1')