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

18 lines
612 B
Python

from arm.logicnode.arm_nodes import *
class CanvasGetScaleNode(ArmLogicTreeNode):
"""Get canvas element scale"""
bl_idname = 'LNCanvasGetScaleNode'
bl_label = 'Canvas Get Scale'
arm_version = 1
def init(self, context):
super(CanvasGetScaleNode, self).init(context)
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)