private void StartHotFix(Queue <IHotFix> hotFixesQueue) { //是否需要热更 if (FrameworkConfig.Instance.UseRemotePersistantPath) { if (string.IsNullOrEmpty(FrameworkConfig.Instance.RemoteUrlConfig)) { LDebug.LogErrorFormat(">>REMOTE_IP: {0} 无效!", FrameworkConfig.Instance.RemoteUrlConfig); return; } LitTool.MonoBehaviour.StartCoroutine(IStartHotFix(hotFixesQueue)); } else { MsgManager.Instance.Broadcast(InternalEvent.END_LOAD_REMOTE_CONFIG); } }