Version: 2018.1

AssetPostprocessor.OnPostprocessSprites(Texture2D, Sprite[])

マニュアルに切り替える

説明

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

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

#pragma strict

class Example extends AssetPostprocessor { function OnPostprocessSprites (texture:Texture2D , sprites:Sprite[] ) { Debug.Log("Sprites: " + sprites.Length); }

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

}