16 lines
361 B
Python
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')
|