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

15 lines
421 B
Python

from lnx.logicnode.lnx_nodes import *
class ArrayShiftNode(LnxLogicTreeNode):
"""Removes the first element of the given array.
@see [Haxe API](https://api.haxe.org/Array.html#shift)"""
bl_idname = 'LNArrayShiftNode'
bl_label = 'Array Shift'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketArray', 'Array')
self.add_output('LnxDynamicSocket', 'Value')