예제 #1
0
        /// <summary>
        /// Rebuild the mesh positions and submeshes. If vertex count matches new positions array the existing attributes are kept, otherwise the mesh is cleared. UV2 is the exception, it is always cleared.
        /// </summary>
        /// <param name="preferredTopology">Triangles and Quads are supported.</param>
        public void ToMesh(MeshTopology preferredTopology = MeshTopology.Triangles)
        {
            // if the mesh vertex count hasn't been modified, we can keep most of the mesh elements around
            if (mesh == null)
            {
#if ENABLE_DRIVEN_PROPERTIES
                SerializationUtility.RegisterDrivenProperty(this, this, "m_Mesh");
#endif
                mesh = new Mesh();
            }
            else if (mesh.vertexCount != vertexCount)
            {
                mesh.Clear();
            }

            mesh.indexFormat = vertexCount > ushort.MaxValue ? Rendering.IndexFormat.UInt32 : Rendering.IndexFormat.UInt16;
            mesh.vertices    = m_Positions;
            mesh.uv2         = null;

            if (m_MeshFormatVersion < k_MeshFormatVersion)
            {
                if (m_MeshFormatVersion < k_MeshFormatVersionSubmeshMaterialRefactor)
                {
                    Submesh.MapFaceMaterialsToSubmeshIndex(this);
                }
                if (m_MeshFormatVersion < k_MeshFormatVersionAutoUVScaleOffset)
                {
                    UvUnwrapping.UpgradeAutoUVScaleOffset(this);
                }
                m_MeshFormatVersion = k_MeshFormatVersion;
            }

            m_MeshFormatVersion = k_MeshFormatVersion;

            int materialCount = MaterialUtility.GetMaterialCount(renderer);

            Submesh[] submeshes = Submesh.GetSubmeshes(facesInternal, materialCount, preferredTopology);

            mesh.subMeshCount = materialCount;

            for (int i = 0; i < mesh.subMeshCount; i++)
            {
#if DEVELOPER_MODE
                if (i >= materialCount)
                {
                    Log.Warning("Submesh index " + i + " is out of bounds of the MeshRenderer materials array.");
                }
                if (submeshes[i] == null)
                {
                    throw new Exception("Attempting to assign a null submesh. " + i + "/" + materialCount);
                }
#endif
                mesh.SetIndices(submeshes[i].m_Indexes, submeshes[i].m_Topology, i, false);
            }

            mesh.name = string.Format("pb_Mesh{0}", id);

            EnsureMeshFilterIsAssigned();
        }
        /// <summary>
        /// Rebuild the mesh positions and submeshes. If vertex count matches new positions array the existing attributes are kept, otherwise the mesh is cleared. UV2 is the exception, it is always cleared.
        /// </summary>
        /// <param name="preferredTopology">Triangles and Quads are supported.</param>
        public void ToMesh(MeshTopology preferredTopology = MeshTopology.Triangles)
        {
            Mesh m = mesh;

            // if the mesh vertex count hasn't been modified, we can keep most of the mesh elements around
            if (m != null && m.vertexCount == m_Positions.Length)
            {
                m = mesh;
            }
            else if (m == null)
            {
                m = new Mesh();
            }
            else
            {
                m.Clear();
            }

            m.indexFormat = vertexCount > ushort.MaxValue ? Rendering.IndexFormat.UInt32 : Rendering.IndexFormat.UInt16;
            m.vertices    = m_Positions;
            m.uv2         = null;

            if (m_MeshFormatVersion < k_MeshFormatVersion)
            {
                if (m_MeshFormatVersion < k_MeshFormatVersionSubmeshMaterialRefactor)
                {
                    Submesh.MapFaceMaterialsToSubmeshIndex(this);
                }

                m_MeshFormatVersion = k_MeshFormatVersion;
            }

            m_MeshFormatVersion = k_MeshFormatVersion;

            int materialCount = MaterialUtility.GetMaterialCount(renderer);

            Submesh[] submeshes = Submesh.GetSubmeshes(facesInternal, materialCount, preferredTopology);

            m.subMeshCount = materialCount;

            for (int i = 0; i < m.subMeshCount; i++)
            {
#if DEVELOPER_MODE
                if (i >= materialCount)
                {
                    Log.Warning("Submesh index " + i + " is out of bounds of the MeshRenderer materials array.");
                }
                if (submeshes[i] == null)
                {
                    throw new Exception("Attempting to assign a null submesh. " + i + "/" + materialCount);
                }
#endif
                m.SetIndices(submeshes[i].m_Indexes, submeshes[i].m_Topology, i, false);
            }

            m.name            = string.Format("pb_Mesh{0}", id);
            filter.sharedMesh = m;
        }