Camera.nearClipPlane

var nearClipPlane : float

Description

The near clipping plane distance.

JavaScript
    camera.nearClipPlane = 0.1;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
camera.nearClipPlane = 0.1F;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
camera.nearClipPlane = 0.1F

See Also: camera component.