armory/blender/arm/logicnode/logic/LN_once_per_frame.py
2021-06-07 13:41:24 +02:00

17 lines
531 B
Python

from arm.logicnode.arm_nodes import *
class OncePerFrameNode(ArmLogicTreeNode):
"""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'
arm_section = 'flow'
arm_version = 1
def init(self, context):
super(OncePerFrameNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_output('ArmNodeSocketAction', 'Out')