少年修仙传客户端基础资源
lwb
2021-03-03 354a2903d7a9aabbe022875036bf6c6c3671fcb1
9527 增加il委托注册

(cherry picked from commit bffada4cba55dae74aa3fe829ddcd2e33b72dd04)
(cherry picked from commit 1cba2ca86aa247794b0f46e680b23654410810f8)
2个文件已修改
19 ■■■■■ 已修改文件
Assets/Editor/Tool/ClientPackage.cs 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Assets/ILRuntime/Src/ILLauncherProxy.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Assets/Editor/Tool/ClientPackage.cs
@@ -16,31 +16,26 @@
    public static string auditOutTime = string.Empty;
    public static string SDK_PLUGIN_PROJECT
    {
    public static string SDK_PLUGIN_PROJECT {
        get { return LocalSave.GetString("SDK_PROJECT_PATH"); }
        set { LocalSave.SetString("SDK_PROJECT_PATH", value); }
    }
    public static bool obfuscatorEnabled
    {
    public static bool obfuscatorEnabled {
        get { return LocalSave.GetBool("obfuscatorEnabled", false); }
        set { LocalSave.SetBool("obfuscatorEnabled", value); }
    }
    public static bool includeConfig
    {
    public static bool includeConfig {
        get { return LocalSave.GetBool("client_pg_includeConfig", false); }
        set { LocalSave.SetBool("client_pg_includeConfig", value); }
    }
    public static bool includeUI
    {
    public static bool includeUI {
        get { return LocalSave.GetBool("client_pg_includeUI", false); }
        set { LocalSave.SetBool("client_pg_includeUI", value); }
    }
    public static int AssetPrior
    {
    public static int AssetPrior {
        get { return LocalSave.GetInt("HalfAssetPrior", 1); }
        set { LocalSave.SetInt("HalfAssetPrior", value); }
    }
@@ -497,7 +492,6 @@
    public static void BuildIpa(string _sdkPath, string _publisher, int _buildIndex, bool _replace)
    {
#if UNITY_IOS
        PreBuild(_publisher, _buildIndex);
        var versionName = string.Empty;
@@ -535,7 +529,7 @@
        PlayerSettings.iOS.appleDeveloperTeamID = VersionConfig.Get().appleDeveloperTeamID;
        IFix.Editor.IFixEditor.InjectAllAssemblys();//对injectAssemblys里的程序集进行注入,然后备份
#if UNITY_IOS
        if (_replace)
        {
            XCodeProjectMod.BuildIOSProject_Replace();
Assets/ILRuntime/Src/ILLauncherProxy.cs
@@ -120,6 +120,7 @@
        appdomain.DelegateManager.RegisterMethodDelegate<ulong>();
        appdomain.DelegateManager.RegisterMethodDelegate<uint>();
        appdomain.DelegateManager.RegisterMethodDelegate<Snxxz.UI.Operation>();
        appdomain.DelegateManager.RegisterMethodDelegate<Snxxz.UI.Operation,int >();
        appdomain.DelegateManager.RegisterMethodDelegate<float, Vector2>();
        appdomain.DelegateManager.RegisterMethodDelegate<int, Transform>();
        appdomain.DelegateManager.RegisterMethodDelegate<Vector2>();