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

19 lines
658 B
Python

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')