WuhuIslandTesting/Library/PackageCache/com.unity.addressables@1.21.12/Documentation~/ScriptReference/CheckForCatalogUpdatesScriptReference.md
2025-01-07 02:06:59 +01:00

1.4 KiB

uid
scriptreference-checkforcatalogupdates

CheckForCatalogUpdates

Declaration

[!code-cssample]

Parameters

Name Description
autoReleaseHandle If the handle should be released on completion, or manually released. Defaults to true.

Returns

AsyncOperationHandle<List> : AsyncOperationHandle that is used to check when the operation has completed. The result of the operation is a list of all catalog ids that have an available update.

Description

Checks all updatable content catalogs for a new version. Returning a list of catalog ids with available updates. This can be used to filter which catalogs to update when using UpdateCatalogs.

Note: Catalogs loaded with LoadContentCatalogAsync must be released in order to be updated. See loading additional catalogs manual for more information.

Using CheckForCatalogUpdate to print out each catalog with an available update: [!code-cssample]