15 lines
		
	
	
		
			379 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			379 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from lnx.logicnode.lnx_nodes import *
 | 
						|
 | 
						|
 | 
						|
class ClearMapNode(LnxLogicTreeNode):
 | 
						|
    """Clear Map"""
 | 
						|
    bl_idname = 'LNClearMapNode'
 | 
						|
    bl_label = 'Clear Map'
 | 
						|
    lnx_version = 1
 | 
						|
 | 
						|
    def init(self, context):
 | 
						|
        self.add_input('LnxNodeSocketAction', 'In')
 | 
						|
        self.add_input('LnxDynamicSocket', 'Map')
 | 
						|
 | 
						|
        self.add_output('LnxNodeSocketAction', 'Out')
 |