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

15 lines
427 B
Python
Raw Normal View History

2018-02-20 18:46:16 +01:00
from arm.logicnode.arm_nodes import *
class InverseNode(ArmLogicTreeNode):
2020-09-28 15:58:41 +02:00
"""Activates the output if the input is not active."""
2018-02-20 18:46:16 +01:00
bl_idname = 'LNInverseNode'
2020-09-30 17:00:18 +02:00
bl_label = 'Invert Output'
2020-10-27 19:44:37 +01:00
arm_section = 'flow'
arm_version = 1
2018-02-20 18:46:16 +01:00
def init(self, context):
super(InverseNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_output('ArmNodeSocketAction', 'Out')