Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Quaternion.LookRotation

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public static function LookRotation(forward: Vector3, upwards: Vector3 = Vector3.up): Quaternion;
public static Quaternion LookRotation(Vector3 forward, Vector3 upwards = Vector3.up);
public static function LookRotation(forward: Vector3, upwards: Vector3 = Vector3.up): Quaternion;
public static Quaternion LookRotation(Vector3 forward, Vector3 upwards = Vector3.up);

パラメーター

forward Vector3(0, 0, 1) と同じ意味
upwards Vector3(0, 1, 0) と同じ意味

説明

指定された forwardupwards 方向に回転します。

計算したクォータニオンを返します。 Transform の方向変更に使用される場合は、Z 座標は forward と、 Y 座標は upwards と一直線になるよう配置されます。これらのベクトルは垂直に交差していると仮定されます。 forward が 0 の場合は、ログにエラーが記録されます。

	// Most of the time you can use:
	// transform.LookAt instead

var target : Transform; function Update () { var relativePos = target.position - transform.position; var rotation = Quaternion.LookRotation(relativePos); transform.rotation = rotation; }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Transform target; void Update() { Vector3 relativePos = target.position - transform.position; Quaternion rotation = Quaternion.LookRotation(relativePos); transform.rotation = rotation; } }

See Also: SetLookRotation.