Camera.rect 矩形

var rect : Rect

Description描述

Where on the screen is the camera rendered in normalized coordinates.

相继被渲染到屏幕规范化坐标中的位置。

The values in rect range from zero (left/bottom) to one (right/top).

Rect的范围总0(左/下)到1(右/上)。

// Change the width of the viewport each time space key is pressed
//每次按下空格键时改变视口宽度
function Update () {
	if (Input.GetButtonDown ("Jump")) {
		// choose the margin randomly
		//随机选择边缘
		var margin = Random.Range (0.0, 0.3);
		// setup the rectangle
		//设置矩形
		camera.rect = Rect (margin, 0, 1 - margin * 2, 1);
	}
}
最后修改:2011年3月6日 Sunday 20:24

本脚本参考基于Unity 3.4.1f5

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