Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

SpriteAtlas.GetSprites

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public int GetSprites(Sprite[] sprites);

Parameters

spritesArray of Sprite that will be filled.

Returns

int The size of the returned array.

Description

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);

Parameters

spritesArray of Sprite that will be filled.
nameThe name of the Sprite.

Description

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

Did you find this page useful? Please give it a rating: