armory/blender/arm/logicnode/logic/LN_is_false.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

19 lines
500 B
Python

from arm.logicnode.arm_nodes import *
class IsFalseNode(ArmLogicTreeNode):
"""Passes through its activation only if the plugged-in boolean
equals `false`.
@seeNode Is True"""
bl_idname = 'LNIsFalseNode'
bl_label = 'Is False'
arm_version = 1
def init(self, context):
super(IsFalseNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmBoolSocket', 'Bool')
self.add_output('ArmNodeSocketAction', 'Out')