var pixelWidth : float
Description描述
How wide is the camera in pixels (Read Only).
相机有多宽,以像素单位(只读)。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public void Awake() {
print("Camera is " + camera.pixelWidth + " pixels wide");
}
}
print ("Camera is " + camera.pixelWidth + " pixels wide");