assetImporter
Reference to the asset importer.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEditor
- Assembly: UnityEditor
public AssetImporter assetImporter { get; }
Examples
using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEditor;// Set the scale of all the imported models to "globalScaleModifier"// and dont generate materials for the imported objectspublic class CustomImportSettings : AssetPostprocessor{ float globalScaleModifier = 0.0028f; void OnPreprocessModel() { ModelImporter importer = (ModelImporter)assetImporter; importer.globalScale = globalScaleModifier; importer.materialImportMode = ModelImporterMaterialImportMode.None; }}