Version: 2020.1
언어: 한국어
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."); } }