forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
14
leenkx/blender/lnx/logicnode/map/LN_get_map_value.py
Normal file
14
leenkx/blender/lnx/logicnode/map/LN_get_map_value.py
Normal file
@ -0,0 +1,14 @@
|
||||
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')
|
Reference in New Issue
Block a user