Version: 2022.2

CustomObjectIndexerAttributeConstructor

切换到手册
public CustomObjectIndexerAttribute (Type type);

参数

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);
}