var pixelWidth : float
Description
How wide is the camera in pixels (Read Only).
print (
"Camera is " + camera.pixelWidth +
" pixels wide");
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
print(
"Camera is " + camera.pixelWidth +
" pixels wide");
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
def
Awake():
print((('Camera is ' + camera.pixelWidth) + ' pixels wide'))