Update Files
This commit is contained in:
16
leenkx/blender/lnx/logicnode/map/LN_map_key_exists.py
Normal file
16
leenkx/blender/lnx/logicnode/map/LN_map_key_exists.py
Normal file
@ -0,0 +1,16 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
|
||||
class MapKeyExistsNode(LnxLogicTreeNode):
|
||||
"""Map Key Exists"""
|
||||
bl_idname = 'LNMapKeyExistsNode'
|
||||
bl_label = 'Map Key Exists'
|
||||
lnx_version = 1
|
||||
|
||||
def init(self, context):
|
||||
self.add_input('LnxNodeSocketAction', 'In')
|
||||
self.add_input('LnxDynamicSocket', 'Map')
|
||||
self.add_input('LnxDynamicSocket', 'Key')
|
||||
|
||||
self.add_output('LnxNodeSocketAction', 'True')
|
||||
self.add_output('LnxNodeSocketAction', 'False')
|
Reference in New Issue
Block a user