19 lines
658 B
Python
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')
|