三国卡牌客户端基础资源仓库
Assets/Launch/Launch.cs
@@ -154,10 +154,18 @@
        LocalResManager.step = LocalResManager.LoadDllStep.None;
        // m_UICanvas.gameObject.SetActive(false);
        DestroySingleton();
        Type type = _hotUpdateAss.GetType("LaunchInHot").BaseType;
        Type type = _hotUpdateAss.GetType("LaunchInHot");
        GameObject go = new GameObject("LaunchInHot");
        go.AddComponent(type);
        var getInstance = type.GetMethod("get_Instance", BindingFlags.Public | BindingFlags.Static);
        if (getInstance != null)
        {
            getInstance.Invoke(null, null);
        }
        else
        {
            Debug.LogError("无法找到get_Instance方法");
        }
        Debug.Log("进入游戏流程");
    }