public override void Execute() { var scenesToDownload = SpecialSceneService.GetGeoBasedScenes(); foreach (var sceneId in scenesToDownload) { BibaCDNService.DownloadFileFromCDN(sceneId + BibaContentConstants.UNITY3D_EXTENSION); } }
public override void Execute() { var geoScenes = SpecialSceneService.GetGeoBasedScenes(); foreach (var sceneId in geoScenes) { if (CDNService.ShouldDownloadOptionalFile(sceneId + BibaContentConstants.UNITY3D_EXTENSION)) { SetMenuStateTriggerSignal.Dispatch(MenuStateTrigger.Download); Fail(); } } }