Quaternion.Inverse 求反

static function Inverse (rotation : Quaternion) : Quaternion

Description描述

Returns the Inverse of rotation.

返回反向的旋转。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Transform target;
	void Update() {
		transform.rotation = Quaternion.Inverse(target.rotation);
	}
}
// Sets this transform to have the opposite rotation of the target
//设置这个变换具有target相反的旋转
var target : Transform;
function Update () {
	transform.rotation = Quaternion.Inverse(target.rotation);
}
最后修改:2011年1月16日 Sunday 17:23

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。