お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close
b
と b
の間の距離を返します
Vector3.Distance(a,b)
は (a-b).magnitude
と同じです。
var other : Transform; if (other) { var dist = Vector3.Distance(other.position, transform.position); print ("Distance to other: " + dist); }
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { public Transform other; void Example() { if (other) { float dist = Vector3.Distance(other.position, transform.position); print("Distance to other: " + dist); } } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): public other as Transform def Example() as void: if other: dist as float = Vector3.Distance(other.position, transform.position) print(('Distance to other: ' + dist))