Update Files
This commit is contained in:
18
leenkx/blender/lnx/logicnode/array/LN_array_splice.py
Normal file
18
leenkx/blender/lnx/logicnode/array/LN_array_splice.py
Normal file
@ -0,0 +1,18 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class ArraySpliceNode(LnxLogicTreeNode):
|
||||
"""Removes the given amount of elements from the given array and returns it.
|
||||
|
||||
@see [Haxe API](https://api.haxe.org/Array.html#splice)"""
|
||||
bl_idname = 'LNArraySpliceNode'
|
||||
bl_label = 'Array Splice'
|
||||
lnx_version = 2
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxNodeSocketAction', 'In')
|
||||
self.add_input('LnxNodeSocketArray', 'Array')
|
||||
self.add_input('LnxIntSocket', 'Index')
|
||||
self.add_input('LnxIntSocket', 'Length')
|
||||
|
||||
self.add_output('LnxNodeSocketAction', 'Out')
|
||||
self.add_output('LnxNodeSocketArray', 'Array')
|
Reference in New Issue
Block a user