Version: 2022.3
言語: 日本語
public static bool GenerateSecondaryUVSet (Mesh src);
public static bool GenerateSecondaryUVSet (Mesh src, UnwrapParam settings);

パラメーター

src The Mesh to update.
settings Settings that configure the calculation.

戻り値

bool Returns true if the calculation succeeded. Otherwise, returns false.

説明

Compute a unique UV layout for a Mesh, and store it in Mesh.uv2.

When you import a model asset, you can instruct Unity to compute a lightmap UV layout for it using [[ModelImporter-generateSecondaryUV]] or the Model Import Settings Inspector. This function allows you to do the same to procedurally generated meshes.

If this process requires multiple UV charts to flatten the the mesh, the mesh might contain more vertices than before. If the mesh uses 16-bit indices (see Mesh.indexFormat) and the process would result in more vertices than are possible to use with 16-bit indices, this function fails and returns false.

See Also: Mesh class, ModelImporter class, Generating Lightmap UVs.