forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
14
leenkx/blender/lnx/logicnode/array/LN_array_shift.py
Normal file
14
leenkx/blender/lnx/logicnode/array/LN_array_shift.py
Normal file
@ -0,0 +1,14 @@
|
||||
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')
|
Reference in New Issue
Block a user