armory/blender/arm/logicnode/variable/LN_boolean.py

15 lines
461 B
Python
Raw Normal View History

2017-03-15 12:30:14 +01:00
from arm.logicnode.arm_nodes import *
2017-03-06 02:29:03 +01:00
class BooleanNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Stores the given boolean as a variable. A boolean value has just two
2020-11-17 21:35:22 +01:00
states: `true` and `false`."""
2017-04-04 23:11:31 +02:00
bl_idname = 'LNBooleanNode'
bl_label = 'Boolean'
arm_version = 1
2017-03-06 02:29:03 +01:00
def init(self, context):
super(BooleanNode, self).init(context)
2020-09-20 20:10:01 +02:00
self.add_input('NodeSocketBool', 'Bool In')
2020-11-17 16:01:15 +01:00
2020-11-17 21:35:22 +01:00
self.add_output('NodeSocketBool', 'Bool Out', is_var=True)