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

17 lines
505 B
Python
Raw Normal View History

2017-04-16 14:46:35 +02:00
from arm.logicnode.arm_nodes import *
class ArrayPopNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Removes the last element of the given array.
2020-09-28 15:58:41 +02:00
@see [Haxe API](https://api.haxe.org/Array.html#pop)"""
2017-04-16 14:46:35 +02:00
bl_idname = 'LNArrayPopNode'
bl_label = 'Array Pop'
arm_version = 1
2017-04-16 14:46:35 +02:00
def init(self, context):
super(ArrayPopNode, 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(ArrayPopNode, category=PKG_AS_CATEGORY)