forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
12
leenkx/blender/lnx/logicnode/array/LN_array_get_next.py
Normal file
12
leenkx/blender/lnx/logicnode/array/LN_array_get_next.py
Normal file
@ -0,0 +1,12 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class ArrayGetNextNode(LnxLogicTreeNode):
|
||||
"""Returns the next value to be retrieve by looping the array."""
|
||||
bl_idname = 'LNArrayGetNextNode'
|
||||
bl_label = 'Array Get Next'
|
||||
lnx_version = 1
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketArray', 'Array')
|
||||
|
||||
self.add_output('LnxDynamicSocket', 'Value')
|
Reference in New Issue
Block a user