Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Closecombine | Descriptions of the Meshes to combine. |
mergeSubMeshes | Defines whether Meshes should be combined into a single sub-Mesh. |
useMatrices | Defines whether the transforms supplied in the CombineInstance array should be used or ignored. |
Combines several Meshes into this Mesh.
Combining Meshes is useful for performance optimization.
If mergeSubMeshes
is true, all the Meshes are combined to a single sub-Mesh. Otherwise, each Mesh
goes into a different sub-Mesh. If all Meshes share the same Material, set this to true.
If useMatrices
is true, the transform matrices in CombineInstance structs are used. Otherwise, they are ignored.
Set hasLightmapData
to true to transform the input Mesh lightmap UV data by the lightmap scale offset data in CombineInstance structs. The Meshes must share the same lightmap texture.
@script RequireComponent(MeshFilter) @script RequireComponent(MeshRenderer) function Start () { var meshFilters: MeshFilter[] = GetComponentsInChildren(MeshFilter); var combine : CombineInstance[] = new CombineInstance[meshFilters.Length]; for (var i = 0; i < meshFilters.Length; i++){ combine[i].mesh = meshFilters[i].sharedMesh; combine[i].transform = meshFilters[i].transform.localToWorldMatrix; meshFilters[i].gameObject.active = false; } transform.GetComponent.<MeshFilter>().mesh = new Mesh(); transform.GetComponent.<MeshFilter>().mesh.CombineMeshes(combine); transform.gameObject.active = true; }
using UnityEngine; using System.Collections;
[RequireComponent(typeof(MeshFilter))] [RequireComponent(typeof(MeshRenderer))] public class ExampleClass : MonoBehaviour { void Start() { MeshFilter[] meshFilters = GetComponentsInChildren<MeshFilter>(); CombineInstance[] combine = new CombineInstance[meshFilters.Length]; int i = 0; while (i < meshFilters.Length) { combine[i].mesh = meshFilters[i].sharedMesh; combine[i].transform = meshFilters[i].transform.localToWorldMatrix; meshFilters[i].gameObject.active = false; i++; } transform.GetComponent<MeshFilter>().mesh = new Mesh(); transform.GetComponent<MeshFilter>().mesh.CombineMeshes(combine); transform.gameObject.active = true; } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information