armory/blender/arm/logicnode/string/LN_length_string.py
2020-09-20 15:10:01 -03:00

15 lines
438 B
Python

from arm.logicnode.arm_nodes import *
class LengthStringNode(ArmLogicTreeNode):
"""String Length node"""
bl_idname = 'LNLengthStringNode'
bl_label = 'String Length'
arm_version = 1
def init(self, context):
super(LengthStringNode, self).init(context)
self.add_output('NodeSocketInt', 'Length')
self.add_input('NodeSocketString', 'String')
add_node(LengthStringNode, category=PKG_AS_CATEGORY)