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.
Additional resources: Resources.UnloadUnusedAssets.