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