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

18 lines
637 B
Python
Raw Normal View History

2018-10-25 10:20:34 +02:00
from arm.logicnode.arm_nodes import *
class CanvasSetLocationNode(ArmLogicTreeNode):
2020-09-23 22:12:25 +02:00
"""Use to set the location of an UI element."""
2018-10-25 10:20:34 +02:00
bl_idname = 'LNCanvasSetLocationNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Set Canvas Location'
arm_version = 1
2018-10-25 10:20:34 +02:00
def init(self, context):
super(CanvasSetLocationNode, 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', 'X')
self.add_input('NodeSocketFloat', 'Y')
self.add_output('ArmNodeSocketAction', 'Out')
2018-10-25 10:20:34 +02:00
add_node(CanvasSetLocationNode, category=PKG_AS_CATEGORY)