Version: 2020.2
언어: 한국어
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.AssetImporters;

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