Version: 2020.2
言語: 日本語
public static float Angle (Vector3 from, Vector3 to);

パラメーター

from The vector from which the angular difference is measured.
to The vector to which the angular difference is measured.

戻り値

float The angle in degrees between the two vectors.

説明

2 点間( fromto )の角度を返します

The angle returned is the unsigned angle between the two vectors. This means the smaller of the two possible angles between the two vectors is used. The result is never greater than 180 degrees.

using UnityEngine;

public class AngleExample : MonoBehaviour { public Transform target;

// prints "close" if the z-axis of this transform looks // almost towards the target

void Update() { Vector3 targetDir = target.position - transform.position; float angle = Vector3.Angle(targetDir, transform.forward);

if (angle < 5.0f) print("close"); } }

関連項目: SignedAngle function.