using UnityEngine;
using System.Collections;
public class LayerCullDistance : MonoBehaviour {
void Start() {
Camera camera = GetComponent<Camera>();
float[] distances = new float[32];
distances[0] = 40f;
distances[1] = 40f;
distances[8] = 40f;
distances[10] = 40f;
distances[14] = 40f;
distances[15] = 40f;
camera.layerCullDistances = distances;
}
}
'🌍 Unity > 최적화' 카테고리의 다른 글
LOD를 적용해보자 ! Simplygon! (2) | 2017.01.01 |
---|---|
큐브맵은 6드로우콜을 잡아먹는다. (0) | 2016.12.08 |
유니티 최적화 : 메쉬의 정점갯수 최적화 (0) | 2016.07.14 |
최적화 : 심플리곤(SimPlygon) (0) | 2016.07.08 |
[Unity3D] 라이트맵의 공유 (0) | 2016.05.22 |