用UnityWebRequest加载streamingassets下的图片,打包后是红色感叹号

问题遇到的现象和发生背景

在编辑器模式下加载streamingassets下的图片没问题,打包PC后加载出来的是红色感叹号。

问题相关代码,请勿粘贴截图
IEnumerator IETexture(string path, RawImage tex)
    {
        string pa = Path.Combine(Application.streamingAssetsPath + "/" + path+".png");
        UnityWebRequest webRequest = UnityWebRequestTexture.GetTexture(pa);
        yield return webRequest.SendWebRequest();
        Debug.LogError(webRequest.error);
        if (DownloadHandlerTexture.GetContent(webRequest) != null)
        {
            Texture2D texture = DownloadHandlerTexture.GetContent(webRequest);
            tex.texture = texture;
        }
    }


运行结果及报错内容
Debug.LogError(webRequest.error)的结果也为空,但就是加载的图片变成红色感叹号
我的解答思路和尝试过的方法
我想要达到的结果

在地址前加一个本地协议试试
UnityWebRequest webRequest = UnityWebRequestTexture.GetTexture("file://"+pa);

双斜杠就行,不行就是三斜杠

接口倒是没问题,有可能是图的问题,有试过换一张图吗

调用的地方代码贴出来看看,感觉是调用出的问题