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

15 lines
450 B
Python

from arm.logicnode.arm_nodes import *
class ArrayLengthNode(ArmLogicTreeNode):
"""Use to get the length of an array."""
bl_idname = 'LNArrayLengthNode'
bl_label = 'Array Length'
arm_version = 1
def init(self, context):
super(ArrayLengthNode, self).init(context)
self.add_input('ArmNodeSocketArray', 'Array')
self.add_output('NodeSocketInt', 'Length')
add_node(ArrayLengthNode, category=PKG_AS_CATEGORY)