Compare commits

..

No commits in common. "2fd97a417ffa022f3f91b01e3c9b6459e2dfd3b3" and "a4561a71bd05599241e7737f31516b19af153101" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ namespace QFramework
{
var resSearchRule = SafeObjectPool<ResSearchKeys>.Instance.Allocate();
if (assetName.Contains("netimage:") ||
if (assetName.Contains("NetImage:") ||
assetName.Contains("localimage:") ||
assetName.Contains("localaudio:") ||
assetName.Contains("localtext:") ||

View File

@ -33,7 +33,7 @@ namespace QFramework
{
public static string ToNetImageResName(this string selfHttpUrl)
{
return string.Format("netimage:{0}", selfHttpUrl);
return string.Format("NetImage:{0}", selfHttpUrl);
}
}

View File

@ -13,7 +13,7 @@ public class Global : Singleton<Global>
public XMLTool.AppData appData;
public Module curModule;
public Body3D.Body cur3DPart;
#if UNITY_WEBGL && !UNITY_EDITOR
#if UNITY_WEBGL
public static string dataPath = Application.dataPath + "/Data";
#else
public static string dataPath = Application.dataPath + "/../Data";