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

19 lines
501 B
Python
Raw Normal View History

2017-04-10 21:17:17 +02:00
from arm.logicnode.arm_nodes import *
class IsFalseNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Passes through its activation only if the plugged-in boolean
2020-09-28 15:58:41 +02:00
equals `false`.
@seeNode Is True"""
2017-04-10 21:17:17 +02:00
bl_idname = 'LNIsFalseNode'
bl_label = 'Is False'
arm_version = 1
2017-04-10 21:17:17 +02:00
def init(self, context):
super(IsFalseNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
2020-09-20 20:10:01 +02:00
self.add_input('NodeSocketBool', 'Bool')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', 'Out')