15 lines
		
	
	
		
			421 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			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')
 |