Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Caching.CleanCache

Cambiar al Manual
public static bool CleanCache();

Valor de retorno

bool True when cache cleaning succeeded, false if cache was in use.

Descripción

Delete all AssetBundle and Procedural Material content that has been cached by the current application.

This function is not available to WebPlayer applications that use the shared cache.

See Also: Downloading Asset Bundles, Procedural Materials Caching.

if (GUILayout.Button("Uninstall Game"))
{
    Caching.CleanCache ();
}