Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorGUIUtility.ShowObjectPicker

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

Sumbission failed

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

Close

Cancel

Switch to Manual
public static function ShowObjectPicker(obj: Object, allowSceneObjects: bool, searchFilter: string, controlID: int): void;
public static void ShowObjectPicker(Object obj, bool allowSceneObjects, string searchFilter, int controlID);

Parameters

objThe object to be selected by default.
allowSceneObjectsIs selection of scene objects allowed, or should it only show assets.
searchFilterDefault search filter to apply.
controlIDThe id of the control to set. This is useful if you are showing more than one of these. You can get the value at a later time.

Description

Show the object picker from code.

Once the user interacts with the Object Picker, it will respond by sending ExecuteCommand events back to the calling OnGUI that called this function. The messages are:

ObjectSelectorUpdated - The selected object was changed. The selected object can be read by calling GetObjectPickerObject ObjectSelectorClosed - The user closed the object picker.