言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Caching.IsVersionCached

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function IsVersionCached(url: string, version: int): bool;
public static bool IsVersionCached(string url, int version);
public static def IsVersionCached(url as string, version as int) as bool

Parameters

url AssetBundleのファイル名。ドメインとパスの情報はこの文字列から自動的に取り除かれます。
version チェックするAssetBundleのバージョン番号。負の値は許可されていません。

Returns

bool 以前にWWW.LoadFromCacheOrDownload()を使用してロードされ、キャッシュとして現在保存されており、 urlversion が一致しているAssetBundleがある場合はtrueを返します。AssetBundleがキャッシュされていないか、キャッシュからフレッシュされたか、またはCaching APIを使って一度もロードされてない場合はfalseを返します。

Description

AssetBundleをキャッシュ出来るかチェックします。

デフォルトの共有キャッシュを使用する場合、WebPlayerアプリケーションバンドルのURLが自動的に url パラメーターの前に追加されます。これは他の開発者のWebPlayerアプリケーションで同じファイル名のAssetBundleがあった場合に衝突を避けるためです。専用のキャッシュを使用している場合はこの現象は発生しません。 この関数はAssetBundleのプリロードを可能にするために利用することが可能です。最初に、もしAssetBundleの現在のバージョンが既にキャッシュされている場合、Caching.IsVersionCached()を呼び出します。AssetBundleがキャッシュされていない場合はリクエストされた時に即座にメモリにロードして有効にするためにバックグラウンドでプリロードすることが出来ます。

if (Caching.IsVersionCached("http://myserver.com/bla.unity3d", 3))
    GUILayout.Button("Load Level");