Version: 2022.1
언어: 한국어

ModelImporter.SearchAndRemapMaterials

매뉴얼로 전환
public bool SearchAndRemapMaterials (ModelImporterMaterialName nameOption, ModelImporterMaterialSearch searchOption);

파라미터

nameOption The name matching option.
searchOption The search type option.

반환

bool Returns false if the source file is empty or invalid. Returns true otherwise.

설명

Search the project for matching materials and use them instead of the internal materials.

Unity uses the naming convention specified by nameOption to find and match Material assets in your project and maps them to the model. Use the search option to specify if you want the search to be done project wide, locally or recursive up from the model's location.

using UnityEditor;

public class MaterialRemapper : AssetPostprocessor { void OnPreprocessModel() { ModelImporter modelImporter = assetImporter as ModelImporter; modelImporter.SearchAndRemapMaterials(ModelImporterMaterialName.BasedOnMaterialName, ModelImporterMaterialSearch.Everywhere); } }