armory/blender/arm/logicnode/logic/LN_invert_bool.py
2020-10-05 14:55:56 -03:00

15 lines
458 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 Bool'
arm_version = 1
def init(self, context):
super(NotNode, self).init(context)
self.add_input('NodeSocketBool', 'Bool In')
self.add_output('NodeSocketBool', 'Bool Out')
add_node(NotNode, category=PKG_AS_CATEGORY)