言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Transform.localRotation

Switch to Manual
public var localRotation: Quaternion;

Description

親のTransformオブジェクトから見た相対的な回転値

Unityは内部的にQuaternionsとして回転を保存します。オブジェクトを回転させるにはTransform.Rotateを使用します。 オイラー角で回転を変更するにはTransform.localEulerAnglesを使用してください。

	// Set the rotation to be the same as the parent
	transform.localRotation = Quaternion.identity;