u3d:webgld读取外部配置文件

  public static string url;
    private IEnumerator ReadAddress()
    {
        string path = null;
#if UNITY_EDITOR
        path = "file://" + Application.streamingAssetsPath + "/IpAddress.txt";
#endif
#if !UNITY_EDITOR
        path = Application.streamingAssetsPath + "/IpAddress.txt";
#endif
        WWW www = new WWW(path);
        yield return www;
        if (www.isDone)
        {
            url = Encoding.UTF8.GetString(www.bytes);
            print("配置地址:" + url);
        }
    }

webgl平台的特殊性,无法直接file读取,只能通过www的形式读取,读取xml和json文件会有问题

上一篇:Unity 3D网页游戏与flash网页游戏的较量


下一篇:【程序人生】盛趣游戏 U3D 面经(已拿 offer )