armory/blender/arm/logicnode/transform/LN_get_object_rotation.py

20 lines
802 B
Python
Raw Normal View History

2017-04-14 20:38:50 +02:00
from arm.logicnode.arm_nodes import *
class GetRotationNode(ArmLogicTreeNode):
2020-09-28 15:58:41 +02:00
"""Returns the current rotation of the given object."""
2017-04-14 20:38:50 +02:00
bl_idname = 'LNGetRotationNode'
2020-09-25 00:49:21 +02:00
bl_label = 'Get Object Rotation'
arm_version = 1
2017-04-14 20:38:50 +02:00
def init(self, context):
super(GetRotationNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketObject', 'Object')
self.add_output('NodeSocketVector', 'Euler Angles')
self.add_output('NodeSocketVector', 'Vector')
self.add_output('NodeSocketFloat', 'Angle (Radians)')
self.add_output('NodeSocketFloat', 'Angle (Degrees)')
self.add_output('NodeSocketVector', 'Quaternion XYZ')
self.add_output('NodeSocketFloat', 'Quaternion W')
2017-04-14 20:38:50 +02:00
add_node(GetRotationNode, category=PKG_AS_CATEGORY, section='rotation')