MagifyManager․Storage
Overview
This part of the MagifyManager
provides access to operations with storage.
LoadImage
UniTask<ContentHandle<Texture>> LoadImage(
string url,
double timeout,
CancellationToken cancellationToken = default
)
Tries to load the texture by url and save to disk.
LoadImageFromStreamingAssets
ContentHandle<Texture> LoadImageFromStreamingAssets(string url)
Tries to load the texture from streaming assets by name from url (parses url to get file name and finds file with the same name in StreamingAssets folder).
LoadBundle
UniTask<ContentHandle<AssetBundle>> LoadBundle(
string url,
double timeout,
CancellationToken cancellationToken = default
)
Tries to load the asset bundle by url and save to disk.
LoadStoredAppFeature
UniTask<ContentHandle<StoredAppFeatureContent>> LoadStoredAppFeature(
[NotNull] string url,
double timeout,
CancellationToken cancellationToken
)
Tries to load the stored app feature content by url and save to disk.
ImageIsCached
bool ImageIsCached(string url)
Checks if the image was downloaded from this url and saved to disk.
BundleIsCached
bool BundleIsCached(string url)
Checks if the asset bundle was downloaded from this url and saved to disk.
HasDefaultCreative
bool HasDefaultCreative(string url)
Checks for creative in streaming assets by name from url (parses url to get filename and finds file with same name in StreamingAssets folder).
HasDefaultBundle
bool HasDefaultBundle(string url)
Checks for bundle in streaming assets by name from url (parses url to get filename and finds file with same name in StreamingAssets folder).
Clear
void Clear()
Deletes cached to disk images and bundles.
ClearStoredAppFeatures
void ClearStoredAppFeatures()
Deletes all downloaded stored app features content from disk.