我使用 iOS Unity 插件将图像路径发送到统一。在 Unity 中,我尝试使用接收到的路径获取此图像(我不知道如何将图像从 iphone 发送到统一)。问题:我仍然无法获取图像。 WWW 错误:在此服务器上找不到请求的 URL。
//Tried both "file:///..." and "file://..."
string path = "file://var/mobile/Applications/173DE26D-4C0E-4DF7-9DC6-9CBB7D4FC954/Documents/Images/image.png"
Texture texture;
IEnumerator WaitForRequest(WWW www) {
yield return www;
if (www.error == null) {
texture = www.texture;
}
}
void Start() {
WWW www = new WWW(path);
StartCoroutine(WaitForRequest(www));
}