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