Camera.nearClipPlane 近裁剪平面
var nearClipPlane : float
Description描述
The near clipping plane distance.
近裁剪面的距离。
using UnityEngine;using System.Collections;public class example : MonoBehaviour {public void Awake() {camera.nearClipPlane = 0.1F;}}
camera.nearClipPlane = 0.1;
,