Version: Unity 6.5 Alpha (6000.5)
LanguageEnglish
  • C#

AssetDatabase.Contains

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static bool Contains(Object obj);

Declaration

public static bool Contains(EntityId entityId);
Obsolete Please use Contains(EntityId) with the EntityId type instead.

Declaration

public static bool Contains(int instanceID);

Parameters

Parameter Description
obj The asset object to check.
entityId The EntityID of an asset to check.
instanceID The InstanceID of an asset to check.

Returns

bool Returns true if the object, EntityID, or InstanceID corresponds to a file in the Assets folder. Otherwise, returns false.

Description

Checks whether a given object is an asset.

using UnityEditor;
using UnityEngine;

public class AssetDatabaseExamples : MonoBehaviour { [MenuItem("AssetDatabase/Contains Example")] static void ContainsExample() { //Material is created in memory and the Asset Database does not know about it var material = new Material(Shader.Find("Specular")); Debug.Log(AssetDatabase.Contains(material)); //Output will be false //Material is then saved to disk as an asset and therefore Asset Database knows that it exists AssetDatabase.CreateAsset(material, "Assets/Materials/MyMaterial.mat"); Debug.Log(AssetDatabase.Contains(material)); //Output will be true } }