mirror of
https://github.com/ConjureETS/PillowFight.git
synced 2026-03-24 00:50:59 +00:00
16 lines
253 B
C#
16 lines
253 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class cameratest : MonoBehaviour {
|
|
|
|
// Use this for initialization
|
|
void Start () {
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update () {
|
|
Debug.Log(Camera.main.nearClipPlane);
|
|
}
|
|
}
|