16 lines
		
	
	
		
			448 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			448 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								from lnx.logicnode.lnx_nodes import *
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class RemoveMapKeyNode(LnxLogicTreeNode):
							 | 
						||
| 
								 | 
							
								    """Remove Map Key"""
							 | 
						||
| 
								 | 
							
								    bl_idname = 'LNRemoveMapKeyNode'
							 | 
						||
| 
								 | 
							
								    bl_label = 'Remove Map Key'
							 | 
						||
| 
								 | 
							
								    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', 'Out')
							 |