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

14 lines
403 B
Python
Raw Normal View History

2017-04-03 22:29:46 +02:00
from arm.logicnode.arm_nodes import *
class StringNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Stores the given string as a variable."""
2017-04-04 23:11:31 +02:00
bl_idname = 'LNStringNode'
2017-04-03 22:29:46 +02:00
bl_label = 'String'
arm_version = 1
2017-04-03 22:29:46 +02:00
def init(self, context):
super(StringNode, self).init(context)
2020-09-20 20:10:01 +02:00
self.add_input('NodeSocketString', 'String In')
2020-11-17 16:01:15 +01:00
2020-11-21 18:37:51 +01:00
self.add_output('NodeSocketString', 'String Out', is_var=True)