public void onClickOK() { // 优先使用热更新的代码 if (ILRuntimeUtil.getInstance().checkDllClassHasFunc(m_hotfix_class, "onClickOK")) { ILRuntimeUtil.getInstance().getAppDomain().Invoke(m_hotfix_path, "onClickOK", null, null); return; } m_parentScript.exitRoom(); }
public void OnClickQueRen() { // 优先使用热更新的代码 if (ILRuntimeUtil.getInstance().checkDllClassHasFunc("QueRenExitPanelScript_hotfix", "OnClickQueRen")) { ILRuntimeUtil.getInstance().getAppDomain().Invoke("HotFix_Project.QueRenExitPanelScript_hotfix", "OnClickQueRen", null, null); return; } if (m_parentScript != null) { m_parentScript.exitRoom(); } else if (m_parentScript_ddz != null) { m_parentScript_ddz.exitRoom(); } }