documentIndex | 找到已编入索引的单词的文档。 |
word | 要添加到索引的单词。 |
将单词拆分为多个变体。
有关如何将值拆分为多个变体的一些示例,请参见 IndexPropertyComponents。使用 IndexWordComponents 时对单词执行相同的任务。
using UnityEditor; using UnityEditor.Search; static class Example_ObjectIndexer_IndexWordComponents { [CustomObjectIndexer(typeof(SceneAsset), version = 2 /* update me when the code below changes */)] internal static void IndexSceneName(CustomObjectIndexerTarget context, ObjectIndexer indexer) { if (!(context.target is SceneAsset sceneAsset)) return; indexer.IndexWordComponents(context.documentIndex, sceneAsset.name); } }