function Start ()
{
var distances = new float[32];
// Set up layer 10 to cull at 15 meters distance.
// All other layers use the far clip plane distance.
distances[8] = 5;
distances[9] = 2;
camera.layerCullDistances = distances;
}
function Start ()
{
var distances = new float[32];
// Set up layer 10 to cull at 15 meters distance.
// All other layers use the far clip plane distance.
distances[8] = 5;
distances[9] = 2;
camera.layerCullDistances = distances;
}