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

18 lines
630 B
Python
Raw Normal View History

from arm.logicnode.arm_nodes import *
class CanvasGetScaleNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the scale of the given UI element."""
bl_idname = 'LNCanvasGetScaleNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Canvas Scale'
arm_version = 1
def init(self, context):
super(CanvasGetScaleNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('NodeSocketString', 'Element')
self.add_output('ArmNodeSocketAction', 'Out')
self.add_output('NodeSocketInt', 'Height')
self.add_output('NodeSocketInt', 'Width')
add_node(CanvasGetScaleNode, category=PKG_AS_CATEGORY)