Folders Within Resource Folder ?

Just wondering is their a way i can Access another folder within a Resource folder ?

Unless I misunderstand what you want, just use the name of the folder. I do that in An Endless Runner And A Word Game Had A Baby… to grab some sprites that are in a Resources/Letters folder. Like this:

Sprite newSprite = Resources.Load("Letters/letter_" + newLetter, typeof(Sprite)) as Sprite;

Jay

1 Like

Ohh i see thank you Very much :slight_smile: