armory/blender/arm/logicnode/canvas/LN_set_canvas_checkbox.py

17 lines
592 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class CanvasSetCheckBoxNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Sets the state of the given UI checkbox."""
bl_idname = 'LNCanvasSetCheckBoxNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Set Canvas Checkbox'
arm_version = 1
def init(self, context):
super(CanvasSetCheckBoxNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketString', 'Element')
2020-09-20 20:10:01 +02:00
self.add_input('NodeSocketBool', 'Check')
2020-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', 'Out')
add_node(CanvasSetCheckBoxNode, category=PKG_AS_CATEGORY)