13 lines
		
	
	
		
			359 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			359 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from lnx.logicnode.lnx_nodes import *
 | 
						|
 | 
						|
class ActionNameNode(LnxLogicTreeNode):
 | 
						|
    """Stores the given action name."""
 | 
						|
    bl_idname = 'LNActionNameNode'
 | 
						|
    bl_label = 'Action Name'
 | 
						|
    lnx_version = 1
 | 
						|
 | 
						|
    def lnx_init(self, context):
 | 
						|
        self.add_input('LnxNodeSocketAnimAction', 'Action')
 | 
						|
 | 
						|
        self.add_output('LnxNodeSocketAnimAction', 'Action')
 |