版本:Unity 6 (6000.0)
语言英语
  • C#

CustomObjectIndexerAttribute 构造函数

建议更改

成功!

感谢您帮助我们提升 Unity 文档的质量。尽管我们无法采纳所有提交的内容,但我们会仔细阅读用户建议的每一处更改,并在适当的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改提交失败。请在几分钟后重试。感谢您花时间帮助我们提升 Unity 文档的质量。

关闭

取消

声明

public CustomObjectIndexerAttribute(Type type);

参数

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