Update Files
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
|
||||
class CanvasGetCheckboxNode(LnxLogicTreeNode):
|
||||
"""Returns whether the given UI checkbox is checked."""
|
||||
bl_idname = 'LNCanvasGetCheckboxNode'
|
||||
bl_label = 'Get Canvas Checkbox'
|
||||
lnx_section = 'elements_specific'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxStringSocket', 'Element')
|
||||
|
||||
self.add_output('LnxBoolSocket', 'Is Checked')
|
Reference in New Issue
Block a user