Camera.velocity 速度

var velocity : Vector3

Description描述

Get the world-space speed of the camera (Read Only).

获取世界空间中相机的速度(只读)。

This camera's motion in units per second as it was during the last frame.

这是相机在上一帧以单位每秒的云的运动。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Update() {
		print("Camera moving at " + camera.velocity.magnitude + " m/s");
	}
}
function Update () {
	print ("Camera moving at " + camera.velocity.magnitude + " m/s");
}
最后修改:2011年3月6日 Sunday 21:32

本脚本参考基于Unity 3.4.1f5

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