16 lines
		
	
	
		
			483 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			483 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from lnx.logicnode.lnx_nodes import *
 | 
						|
 | 
						|
 | 
						|
class OncePerFrameNode(LnxLogicTreeNode):
 | 
						|
    """Activates the output only once per frame if receives one or more inputs in that frame
 | 
						|
    If there is no input, there will be no output"""
 | 
						|
    bl_idname = 'LNOncePerFrameNode'
 | 
						|
    bl_label = 'Once Per Frame'
 | 
						|
    lnx_section = 'flow'
 | 
						|
    lnx_version = 1
 | 
						|
 | 
						|
    def lnx_init(self, context):
 | 
						|
        self.add_input('LnxNodeSocketAction', 'In')
 | 
						|
 | 
						|
        self.add_output('LnxNodeSocketAction', 'Out')
 |