armory/blender/arm/logicnode/canvas/LN_get_canvas_location.py
2020-09-24 19:49:21 -03:00

17 lines
647 B
Python

from arm.logicnode.arm_nodes import *
class CanvasGetLocationNode(ArmLogicTreeNode):
"""Use to get the location of an UI element (in pixels)."""
bl_idname = 'LNCanvasGetLocationNode'
bl_label = 'Get Canvas Location'
arm_version = 1
def init(self, context):
super(CanvasGetLocationNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketString', 'Element')
self.add_output('ArmNodeSocketAction', 'Out')
self.add_output('NodeSocketInt', 'X')
self.add_output('NodeSocketInt', 'Y')
add_node(CanvasGetLocationNode, category=PKG_AS_CATEGORY)