Version: 2023.2

AssetDatabase.GetScriptableObjectsWithMissingScriptCount

切换到手册
public static int GetScriptableObjectsWithMissingScriptCount (string assetPath);

参数

assetPath The path to the asset file to check.

返回

int The number of ScriptableObject instances in the file which are missing their associated scripts.

描述

Checks how many unloadable ScriptableObject instances are present in the specified asset.

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 check whether an asset contains any such unloadable ScriptableObject instances due to missing scripts. You can remove unloadable ScriptableObject instances from your assets by using AssetDatabase.RemoveScriptableObjectsWithMissingScript.

Note: This function can only be used with native asset files. If you pass a non-native asset file, it will throw an exception.

Additional resources: AssetDatabase.RemoveScriptableObjectsWithMissingScript, GameObjectUtility.GetMonoBehavioursWithMissingScriptCount.