Camera.nearClipPlanevar nearClipPlane : floatDescriptionThe near clipping plane distance.
JavaScripts
camera.nearClipPlane = 0.1;
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { camera.nearClipPlane = 0.1F; } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): camera.nearClipPlane = 0.1F |
