armory/blender/arm/logicnode/array/LN_array_length.py
2021-07-20 20:53:37 +02:00

13 lines
354 B
Python

from arm.logicnode.arm_nodes import *
class ArrayLengthNode(ArmLogicTreeNode):
"""Returns the length of the given array."""
bl_idname = 'LNArrayLengthNode'
bl_label = 'Array Length'
arm_version = 1
def arm_init(self, context):
self.add_input('ArmNodeSocketArray', 'Array')
self.add_output('ArmIntSocket', 'Length')