I am needing to load a small config file (has one character in it) and I keep getting null and not sure why. This is my coroutine:
IEnumerator loadConfig()
{
WWW www = new WWW("file:///" + Application.streamingAssetsPath + "config.txt");
yield return www;
string whichFootprint = www.text;
Debug.Log("fu:" + whichFootprint);
}