Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


ShowDetailsOptions

Defines what details are shown in the preview inspector panel for the search view.
Read time 1 minuteLast updated 10 days ago

Definition

[Flags]public enum ShowDetailsOptions

Remarks

Example ShowDetailsOptions (ShowDetailsOptions)
.

Examples

[SearchItemProvider]internal static SearchProvider CreateProvider(){ return new SearchProvider(id, name) { filterId = "hex:", priority = 99999, // put example provider at a low priority showDetailsOptions = ShowDetailsOptions.Description | ShowDetailsOptions.Preview, fetchItems = (context, items, provider) => FetchItems(context, provider), fetchPreview = (item, context, size, options) => { return CreateTextureFromColor(item.id, (int)size.x, (int)size.y); }, };}

Fields

Value

Description

ActionsShows selected item possible actions.
DefaultDefault set of options used when SearchProvider.showDetails is set to true.
DefaultGroupIndicates that the provider will always be displayed as a group (tab) even if the result set is empty.
DescriptionShow an extended item description.
InspectorShow an embedded inspector for the selected object.
InspectorWithoutHeaderShow an embedded inspector for the selected object. Won't show the editor header.
ListViewIndicates that this search provider wants to display its items in a list view if possible.
NoneNo options are defined.
PreviewShow a large preview.