Version: 2023.1
언어: 한국어

EditorUtility.UnloadUnusedAssetsImmediate

매뉴얼로 전환
public static void UnloadUnusedAssetsImmediate ();
public static void UnloadUnusedAssetsImmediate (bool includeMonoReferencesAsRoots);

파라미터

includeMonoReferencesAsRoots When true, this method does not unload assets referenced by script properties and static variables.

설명

Unloads assets that are not used.

An asset is deemed to be unused if it isn't reached after walking the whole game object hierarchy, including script components. Static variables are also examined.

Set the includeMonoReferencesAsRoots parameter to false to ignore asset references from script properties and static variables. The unloaded assets load again on first use. This parameter is true by default.

This method differs from Resources.UnloadUnusedAssets in that it will wait for asset garbage collection to finish before returning.

See Also: Resources.UnloadUnusedAssets.