type | Type of object to be indexed. |
Register a new Indexing function bound to the specific type.
[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); }