nameOption | The name matching option. |
searchOption | The search type option. |
bool Returns true if the materials have been successfly remapped, otherwise false.
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.
no example available in JavaScript
using UnityEditor;
public class MaterialRemapper : AssetPostprocessor { void OnPreprocessModel() { ModelImporter modelImporter = assetImporter as ModelImporter; modelImporter.SearchAndRemapMaterials(ModelImporterMaterialName.BasedOnMaterialName, ModelImporterMaterialSearch.Everywhere); } }
Did you find this page useful? Please give it a rating: