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

17 lines
495 B
Python
Raw Normal View History

2017-04-10 21:17:17 +02:00
from arm.logicnode.arm_nodes import *
class IsTrueNode(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 `true`.
@seeNode Is False"""
2017-04-10 21:17:17 +02:00
bl_idname = 'LNIsTrueNode'
bl_label = 'Is True'
arm_version = 1
2017-04-10 21:17:17 +02:00
def init(self, context):
super(IsTrueNode, 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-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', 'Out')