Skip to content

Release v2.9.13

Compare
Choose a tag to compare
@michael811125 michael811125 released this 01 Feb 11:14
· 63 commits to master since this release

[2.9.13] - 2024-02-01

  • Updated yooasset to v2.1.1.
  • Added DiskUtils by keerthik third party in AssetLoader module (not supported WebGL).
  • Added Check available disk space in patch and package download step (not supported WebGL).
    • Must add PatchEvents.PatchCheckDiskNotEnoughSpace in patchEvents to handle it (checkout BundleDemo).

image

image

  • Added CheckDiskSpace flag setting on PatchLauncher inspector.

image

  • Added Can set user event handler to PackageOperation.
public class PackageOperation
{
    /// <summary>
    /// Enable or disable disk space check procedure (default is true)
    /// </summary>
    public bool checkDiskSpace = true;

    public OnPatchRepairFailed onPatchRepairFailed;
    public OnPatchInitPatchModeFailed onPatchInitPatchModeFailed;
    public OnPatchVersionUpdateFailed onPatchVersionUpdateFailed;
    public OnPatchManifestUpdateFailed onPatchManifestUpdateFailed;
    public OnPatchCheckDiskNotEnoughSpace onPatchCheckDiskNotEnoughSpace;
    public OnPatchDownloadFailed onPatchDownloadFailed;
    
    public void UserTryPatchRepair()
    public void UserTryInitPatchMode()
    public void UserTryPatchVersionUpdate()
    public void UserTryPatchManifestUpdate()
    public void UserTryCreateDownloader()
}
  • Modified UIBase method name #1adf602 (Replace all below).
method ShowAnime => ShowAnimation

method HideAnime => HideAnimation

delegate AnimeEndCb => AnimationEnd

param animeEndCb => animationEnd

Replace all in Visual Studio

image

image

image