From 31dc5b494d59286a4ef2f159f99d861320c5224b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=95=E5=86=A0=E5=B3=B0?= Date: Fri, 13 Jun 2025 17:25:13 +0800 Subject: [PATCH] fix #569 --- Assets/YooAsset/Runtime/DownloadSystem/DownloadSystemHelper.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assets/YooAsset/Runtime/DownloadSystem/DownloadSystemHelper.cs b/Assets/YooAsset/Runtime/DownloadSystem/DownloadSystemHelper.cs index e127f351..602ab9de 100644 --- a/Assets/YooAsset/Runtime/DownloadSystem/DownloadSystemHelper.cs +++ b/Assets/YooAsset/Runtime/DownloadSystem/DownloadSystemHelper.cs @@ -69,6 +69,8 @@ namespace YooAsset url = new System.Uri(path).ToString(); #elif UNITY_STANDALONE || UNITY_WSA url = StringUtility.Format("file:///{0}", path); +#elif UNITY_TVOS + url = StringUtility.Format("file:///{0}", path); #else throw new System.NotImplementedException(); #endif