Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Vector3.Distance

public static function Distance(a: Vector3, b: Vector3): float;

Description

Returns the distance between a and b.

Vector3.Distance(a,b) is the same as (a-b).magnitude.

	var other : Transform;
	if (other) {
		var dist = Vector3.Distance(other.position, transform.position);
		print ("Distance to other: " + dist);
	}