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

26 lines
918 B
Python
Raw Normal View History

2018-05-26 09:23:43 +02:00
from arm.logicnode.arm_nodes import *
class ConcatenateStringNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Concatenates the given string."""
2018-05-26 09:23:43 +02:00
bl_idname = 'LNConcatenateStringNode'
bl_label = 'Concatenate String'
arm_version = 1
2018-05-26 09:23:43 +02:00
def __init__(self):
array_nodes[str(id(self))] = self
def init(self, context):
super(ConcatenateStringNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('NodeSocketString', 'Input 0')
self.add_output('NodeSocketString', 'String')
2018-05-26 09:23:43 +02:00
def draw_buttons(self, context, layout):
row = layout.row(align=True)
op = row.operator('arm.node_add_input', text='New', icon='PLUS', emboss=True)
op.node_index = str(id(self))
op.socket_type = 'NodeSocketString'
2018-05-26 22:54:08 +02:00
op = row.operator('arm.node_remove_input', text='', icon='X', emboss=True)
op.node_index = str(id(self))
2018-05-26 09:23:43 +02:00
add_node(ConcatenateStringNode, category=PKG_AS_CATEGORY)