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