From 4b6f21836bd4008d2722042d132b7dfd78651476 Mon Sep 17 00:00:00 2001 From: Arneth Date: Sun, 21 Apr 2024 16:19:10 -0400 Subject: [PATCH] maybe fix path --- Assets/Scripts/Assembly-CSharp/UnityFile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Assembly-CSharp/UnityFile.cs b/Assets/Scripts/Assembly-CSharp/UnityFile.cs index deaac5f50..cab41bf27 100644 --- a/Assets/Scripts/Assembly-CSharp/UnityFile.cs +++ b/Assets/Scripts/Assembly-CSharp/UnityFile.cs @@ -133,7 +133,7 @@ public class UnityFile name = Pathing.ToPlatformAssetBundleName(name); } //string text = Pathing.appContentDataPath + localpath + name; - string text = HelperFunctions.CreateFilePath(("/" + localpath+ name)); + string text = "file://localhost/" + HelperFunctions.CreateFilePath(("/" + localpath+ name)); Debug.LogWarning("Loader: "+ text); return text; }