armory/blender/arm/logicnode/object/LN_get_distance.py

18 lines
614 B
Python
Raw Normal View History

2017-04-08 00:34:45 +02:00
from arm.logicnode.arm_nodes import *
class GetDistanceNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Returns the euclidian distance between the two given objects.
2020-09-28 15:58:41 +02:00
@see For distance between two locations, use the `Distance` operator
in the *[`Vector Math`](#vector-math)* node."""
2017-04-08 00:34:45 +02:00
bl_idname = 'LNGetDistanceNode'
bl_label = 'Get Distance'
arm_version = 1
2017-04-08 00:34:45 +02:00
def init(self, context):
super(GetDistanceNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketObject', 'Object')
self.add_input('ArmNodeSocketObject', 'Object')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('NodeSocketFloat', 'Distance')