itemIconSize
Defines the size of items in the search view.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Property
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
float itemIconSize { get; set; }
Remarks
Examples
using UnityEditor;using UnityEditor.Search;static class Example_ISearchView_itemIconSize{ [MenuItem("Examples/ISearchView/itemIconSize")] public static void Run() { // SearchService can open a SearchView. var view = SearchService.ShowContextual("asset"); view.itemIconSize = 45; }}