ModelImporter.SearchAndRemapMaterials

Switch to Manual
public bool SearchAndRemapMaterials (ModelImporterMaterialName nameOption, ModelImporterMaterialSearch searchOption);

Parameters

nameOptionThe name matching option.
searchOptionThe search type option.

Returns

bool Returns true if the materials have been successfly remapped, otherwise false.

Description

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); } }