armory/blender/arm/logicnode/array/LN_array_shift.py

17 lines
518 B
Python
Raw Normal View History

2017-04-16 14:46:35 +02:00
from arm.logicnode.arm_nodes import *
class ArrayShiftNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Removes the first element of the given array.
2020-09-28 15:58:41 +02:00
@see [Haxe API](https://api.haxe.org/Array.html#shift)"""
2017-04-16 14:46:35 +02:00
bl_idname = 'LNArrayShiftNode'
bl_label = 'Array Shift'
arm_version = 1
2017-04-16 14:46:35 +02:00
def init(self, context):
super(ArrayShiftNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketArray', 'Array')
self.add_output('NodeSocketShader', 'Value')
2017-04-16 14:46:35 +02:00
add_node(ArrayShiftNode, category=PKG_AS_CATEGORY)