armory/blender/arm/logicnode/string/LN_string_length.py

14 lines
406 B
Python
Raw Normal View History

2019-09-29 20:52:00 +02:00
from arm.logicnode.arm_nodes import *
class LengthStringNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the length of the given string."""
2019-09-29 20:52:00 +02:00
bl_idname = 'LNLengthStringNode'
bl_label = 'String Length'
arm_version = 1
2019-09-29 20:52:00 +02:00
def init(self, context):
super(LengthStringNode, self).init(context)
2020-09-20 20:10:01 +02:00
self.add_output('NodeSocketInt', 'Length')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_input('NodeSocketString', 'String')