What path is equivalent to the Resources folder on the iphone?
Application.dataPath
Application.streamingAssetsPath
Application.persistentDataPath
something else?
Thanks,
Dan
What path is equivalent to the Resources folder on the iphone?
Application.dataPath
Application.streamingAssetsPath
Application.persistentDataPath
something else?
Thanks,
Dan
None; the Resources folder does not exist on any platform as an actual folder. It’s only a folder in the editor. In a build, the assets are consolidated into a file. You use Resources.Load to load them.