Version: 2022.1
언어: 한국어

Mesh.OptimizeIndexBuffers

매뉴얼로 전환
public void OptimizeIndexBuffers ();

설명

Optimizes the geometry of the Mesh to improve rendering performance.

This function causes the geometry of the mesh to be reordered internally in an attempt to improve vertex cache utilisation on the graphics hardware and thus rendering performance. This operation can take a few seconds or more for complex meshes and should only be used where the ordering of the geometry is not significant as it will change - the order of the vertices in the mesh is unaffected.

You should only use this function on meshes you generate procedurally in code, for regular mesh assets it is called automatically by the import pipeline when 'Optimize Mesh' is enabled in the mesh importer settings.

See Also: Optimize, OptimizeReorderVertexBuffer

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Mesh mesh = gameObject.GetComponent<MeshFilter>().mesh; mesh.OptimizeIndexBuffers(); } }