armory/blender/arm/logicnode/canvas/LN_set_canvas_text_color.py

20 lines
735 B
Python
Raw Normal View History

2019-09-29 15:37:18 +02:00
from arm.logicnode.arm_nodes import *
class CanvasSetTextColorNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Sets the color of the given UI element."""
2019-09-29 15:37:18 +02:00
bl_idname = 'LNCanvasSetTextColorNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Set Canvas Text Color'
arm_version = 1
2019-09-29 15:37:18 +02:00
def init(self, context):
super(CanvasSetTextColorNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketString', 'Element')
self.add_input('NodeSocketFloat', 'R')
self.add_input('NodeSocketFloat', 'G')
self.add_input('NodeSocketFloat', 'B')
self.add_input('NodeSocketFloat', 'A')
self.add_output('ArmNodeSocketAction', 'Out')
2019-09-29 15:37:18 +02:00
add_node(CanvasSetTextColorNode, category=PKG_AS_CATEGORY)