Version: 2021.2
언어: 한국어
public int GetSprites (Sprite[] sprites);

파라미터

sprites Array of Sprite that will be filled.

반환

int The size of the returned array.

설명

Clone all the Sprite in this atlas and fill them into the supplied array.

The clones will use the packed texture of this atlas. Using the action of SpriteAtlasManager.RequestAtlasCallback will not affect these clones.

The array will not be resized if it doesn't contain enough elements to be filled. Please use SpriteAtlas.spriteCount to determine the size for the array.

Due to the nature of the packing algorithm, Sprites in this list are sorted by their area size, in descending order.


public int GetSprites (Sprite[] sprites, string name);

파라미터

sprites Array of Sprite that will be filled.
name The name of the Sprite.

설명

Clone all the Sprite matching the name in this atlas and fill them into the supplied array.