armory/blender/arm/logicnode/array/LN_array_shift.py
2021-07-20 20:53:37 +02:00

15 lines
421 B
Python

from arm.logicnode.arm_nodes import *
class ArrayShiftNode(ArmLogicTreeNode):
"""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'
arm_version = 1
def arm_init(self, context):
self.add_input('ArmNodeSocketArray', 'Array')
self.add_output('ArmDynamicSocket', 'Value')