LNXSDK/leenkx/blender/lnx/logicnode/logic/LN_loop_continue.py
2025-01-22 16:18:30 +01:00

16 lines
361 B
Python

from lnx.logicnode.lnx_nodes import *
class LoopContinueNode(LnxLogicTreeNode):
"""continues to the next loop.
@seeNode Loop
@seeNode While
"""
bl_idname = 'LNLoopContinueNode'
bl_label = 'Loop Continue'
lnx_section = 'flow'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketAction', 'In')