Version: 2018.4

AssetPostprocessor.OnPostprocessSprites(Texture2D, Sprite[])

マニュアルに切り替える

説明

Add this function to a subclass to get a notification when an texture of sprite(s) has completed importing.

複数のスプライトモードのために、各スプライトのアセットをスプライトの配列で 2番目の引数として渡します。

using UnityEngine;
using UnityEditor;

public class Example : AssetPostprocessor { void OnPostProcessSprites(Texture2D texture, Sprite[] sprites) { Debug.Log("Sprites: " + sprites.Length); }

void OnPostProcessTexture(Texture2D texture) { Debug.Log("Texture2D: (" + texture.width + "x" + texture.height + ")"); } }