armory/blender/arm/logicnode/logic/LN_invert_boolean.py
Moritz Brückner 96aa0ee890 Use custom sockets for default data types
This allows to listen for socket updates for the live patch system
2021-07-10 21:46:44 +02:00

14 lines
415 B
Python

from arm.logicnode.arm_nodes import *
class NotNode(ArmLogicTreeNode):
"""Inverts the plugged-in boolean. If its input is `true` it outputs `false`."""
bl_idname = 'LNNotNode'
bl_label = 'Invert Boolean'
arm_version = 1
def init(self, context):
super(NotNode, self).init(context)
self.add_input('ArmBoolSocket', 'Bool In')
self.add_output('ArmBoolSocket', 'Bool Out')