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

15 lines
438 B
Python
Raw Normal View History

2019-09-29 20:52:00 +02:00
from arm.logicnode.arm_nodes import *
class LengthStringNode(ArmLogicTreeNode):
2020-09-08 23:14:51 +02:00
"""String Length node"""
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-09-08 21:49:02 +02:00
self.add_input('NodeSocketString', 'String')
2019-09-29 20:52:00 +02:00
add_node(LengthStringNode, category=PKG_AS_CATEGORY)