Version: 2022.1
LanguageEnglish
  • C#

SearchItem.ToObject

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 Object ToObject();

Declaration

public Object ToObject(Type type);

Parameters

type Used to validate if the object is assignable to Type.

Returns

Object Returns a Unity Object or null if there is none.

Description

Returns any valid Unity Object held by the search item.

See SearchProvider.toObject more information on what it means to convert a SearchItem to a UnityEngine.Object.


Declaration

public T ToObject();

Returns

T Used to validate if the object is assignable to T.

Description

Returns any valid Unity Object held by the search item.