Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Vector3.SignedAngle

Suggest a change

Success!

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

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static method SignedAngle(from: Vector3, to: Vector3, axis: Vector3): float;
public static float SignedAngle(Vector3 from, Vector3 to, Vector3 axis);

Parameters

fromThe vector from which the angular difference is measured.
toThe vector to which the angular difference is measured.
axisA vector around which the other vectors are rotated.

Description

Returns the signed angle in degrees between from and to.

The smaller of the two possible angles between the two vectors is returned, therefore the result will never be greater than 180 degrees or smaller than -180 degrees. If you imagine the from and to vectors as lines on a piece of paper, both originating from the same point, then the axis vector would point up out of the paper. The measured angle between the two vectors would be positive in a clockwise direction and negative in an anti-clockwise direction.

#pragma strict
public var target: Transform;
function Update() {
	var targetDir: Vector3 = target.position - transform.position;
	var forward: Vector3 = transform.forward;
	var angle: float = Vector3.SignedAngle(targetDir, forward, Vector3.up);
	if (angle < -5.0F)
		print("turn left");
	elseif (angle > 5.0F)
		print("turn right");
	else
		print("forward");
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target;

void Update() { Vector3 targetDir = target.position - transform.position; Vector3 forward = transform.forward; float angle = Vector3.SignedAngle(targetDir, forward, Vector3.up); if (angle < -5.0F) print("turn left"); else if (angle > 5.0F) print("turn right"); else print("forward"); } }

See Also: Angle function.

对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答