自定义索引器的版本。递增此数字以使索引器重新索引索引。
每次修改自定义索引器的代码时,请递增其version
编号以更新搜索索引。
[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); }