LNXSDK/leenkx/blender/lnx/logicnode/map/LN_get_map_value.py

15 lines
390 B
Python
Raw Normal View History

2025-01-22 16:18:30 +01:00
from lnx.logicnode.lnx_nodes import *
class GetMapValueNode(LnxLogicTreeNode):
"""Get Map Value"""
bl_idname = 'LNGetMapValueNode'
bl_label = 'Get Map Value'
lnx_version = 1
def init(self, context):
self.add_input('LnxDynamicSocket', 'Map')
self.add_input('LnxDynamicSocket', 'Key')
self.add_output('LnxDynamicSocket', 'Value')