Update Files
This commit is contained in:
15
leenkx/blender/lnx/logicnode/logic/LN_loop_continue.py
Normal file
15
leenkx/blender/lnx/logicnode/logic/LN_loop_continue.py
Normal file
@ -0,0 +1,15 @@
|
||||
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')
|
Reference in New Issue
Block a user