None
No specific search options. Result will be unsorted.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Field
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
None = 0
Examples
using System.Collections.Generic;using UnityEditor;using UnityEditor.Search;using UnityEngine;public class SearchFlags_None{ [MenuItem("Examples/SearchFlags/None")] public static void RequestAll() { SearchService.Request("t:Script", (SearchContext context, IList<SearchItem> items) => { foreach (var item in items) Debug.Log(item); }, SearchFlags.None); }}