armory/blender/arm/logicnode/canvas/LN_set_canvas_rotation.py
Moritz Brückner 96aa0ee890 Use custom sockets for default data types
This allows to listen for socket updates for the live patch system
2021-07-10 21:46:44 +02:00

16 lines
533 B
Python

from arm.logicnode.arm_nodes import *
class CanvasSetRotationNode(ArmLogicTreeNode):
"""Sets the rotation of the given UI element."""
bl_idname = 'LNCanvasSetRotationNode'
bl_label = 'Set Canvas Rotation'
arm_version = 1
def init(self, context):
super(CanvasSetRotationNode, self).init(context)
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmStringSocket', 'Element')
self.add_input('ArmFloatSocket', 'Rad')
self.add_output('ArmNodeSocketAction', 'Out')