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

AssetImporterEditor.InitializeExtraDataInstance

Switch to Manual
protected void InitializeExtraDataInstance (Object extraData, int targetIndex);

Parameters

extraDataA ScriptableObject instance of the type provided by AssetImporterEditor.extraDataType.
targetIndexThe corresponding Editor.targets index of the provided extraData.

Description

This method is called during the initialization process of the Editor, after Awake and before OnEnable.

If the AssetImporterEditor have the CanEditMultipleObjects attribute and more than one Importer is selected, this method will be called once for each extraDataTargets using targetIndex to find the corresponding Editor.targets Importer.

Note: Assembly reloading or external changes made to the inspected file in the Editor may trigger this method outside of the initialization loop. However, you should always reset your data in the given object when it gets called to make sure you stay up to date with the asset file.

See a usage example at AssetImporterEditor.extraDataType.