Projector.aspectRatio 宽高比

var aspectRatio : float

Description描述

The aspect ratio of the projection.

投影的宽高比。

This is projection width divided by height. An aspect ratio of 1.0 makes the projection square; a ratio of 2.0 makes it twice as wide than high.

这个是投影的宽度除以高度。比为1.0这个投影为正方形:比为2.0则宽为高的2倍。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Start() {
		Projector proj = GetComponent<Projector>();
		proj.aspectRatio = 2.0F;
	}
}
function Start() {
	var proj : Projector = GetComponent(Projector);
	proj.aspectRatio = 2.0;
}
最后修改:2011年3月19日 Saturday 14:46

本脚本参考基于Unity 3.4.1f5

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