少年修仙传客户端基础资源
lwb
2021-01-22 8153a3d3c3b1132fd36f453c57141074e1a41dfc
Assets/ILRuntime/Src/ILRuntimeUtility.cs
@@ -18,13 +18,13 @@
        var pdbPath = string.Empty;
        if (AssetSource.refdataFromEditor)
        {
            dllPath = ResourcesPath.ResourcesOutAssetPath + "logic/LogicProject.bytes";
            pdbPath = ResourcesPath.ResourcesOutAssetPath + "logic/LogicProject.pdb";
            dllPath = ResourcesPath.ResourcesOutAssetPath + "logic/Logic.dll.bytes";
            pdbPath = ResourcesPath.ResourcesOutAssetPath + "logic/Logic.pdb";
        }
        else
        {
            dllPath = AssetVersionUtility.GetAssetFilePath("logic/LogicProject.bytes");
            pdbPath = AssetVersionUtility.GetAssetFilePath("logic/LogicProject.pdb");
            dllPath = AssetVersionUtility.GetAssetFilePath("logic/Logic.dll.bytes");
            pdbPath = AssetVersionUtility.GetAssetFilePath("logic/Logic.pdb");
        }
        var fs = new FileStream(dllPath, FileMode.Open);
        var p = new FileStream(pdbPath, FileMode.Open);
@@ -33,7 +33,7 @@
    public void LaunchStart()
    {
        appdomain.Invoke("LogicProject.ILTest", "Test", null, null);
        appdomain.Invoke("GameLogicMgr", "Init", null, null);
    }
}