How to get Sprite from Spritesheet via Resources.Load (path); c # language

    1 answer 1

    Sprite[] sprites = Resources.LoadAll<Sprite>(path); Sprite targetSprite = sprites[3]; 

    I found the solution myself, the question is closed.