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

AssetImporterEditor.Awake

Cambiar al Manual
protected void Awake ();

Descripción

This function is called when the Editor script is started.

Awake is called as the AssetImporterEditor script starts. This happens as the editor is launched and is similar to MonoBehaviour.Awake.

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

public class ExampleScript : AssetImporterEditor { protected override void Awake() { base.Awake(); Debug.Log("Awake"); } }

OnDisable no puede ser una co-routine.