RemoveScriptableObjectsWithMissingScript(string)
Removes any ScriptableObject instances from the given asset file which cannot be loaded because their scripts could not be found.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEditor
- Assembly: UnityEditor.CoreModule
public static int RemoveScriptableObjectsWithMissingScript(string assetPath)
Parameters
The path to the asset file to check.
Returns
Type | Description |
|---|---|
| int | The number of ScriptableObject-derived objects in the file which were removed. |
Remarks
If you delete the script which defines a type of ScriptableObject, all instances of that ScriptableObject in your assets become unloadable. This also happens if you move or rename the script outside of Unity without also moving or renaming the script's .meta file accordingly. This method allows you to remove any such unloadable ScriptableObject instances from an asset. You can check whether there are unloadable ScriptableObject instances in your assets without removing them, by using AssetDatabase.GetScriptableObjectsWithMissingScriptCount.
Note: This function can only be used with native asset files. If you pass a non-native asset file, it will throw an exception.
You must call AssetDatabase.SaveAssets to save the changes to your asset, after using this method.