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

スクリプト言語

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

Camera.pixelRect

Switch to Manual
public var pixelRect: Rect;

Description

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

	function Update () {
		var r : Rect = camera.pixelRect;
		print ("Camera displays from " + r.xMin + " to " + r.xMax + " pixel");
	}