armory/blender/arm/logicnode/array/LN_array_pop.py
2020-09-23 17:12:25 -03:00

15 lines
446 B
Python

from arm.logicnode.arm_nodes import *
class ArrayPopNode(ArmLogicTreeNode):
"""Use to remove the last element of an array."""
bl_idname = 'LNArrayPopNode'
bl_label = 'Array Pop'
arm_version = 1
def init(self, context):
super(ArrayPopNode, self).init(context)
self.add_input('ArmNodeSocketArray', 'Array')
self.add_output('NodeSocketShader', 'Value')
add_node(ArrayPopNode, category=PKG_AS_CATEGORY)