Version: 2019.3
Experimental: this API is experimental and might be changed or removed in the future.

AssetImporterEditor.Apply

マニュアルに切り替える
protected void Apply ();

説明

Saves any changes from the Editor's control into the asset's import settings object.

Can be overridden as required. Gets called when changes to settings are being applied.

using UnityEngine;
using UnityEditor;
using UnityEditor.Experimental.AssetImporters;

public class ExampleScript : AssetImporterEditor { protected override void Apply() { base.Apply(); Debug.Log("The Importer has been applied."); } }