Version: 2021.2
言語: 日本語
public void IndexNumber (int documentIndex, string name, double number);

パラメーター

documentIndex Document where the indexed value was found.
name Key used to retrieve the value.
number Number value to store in the index.

説明

Adds a key-number value pair to the index. The key won't be added with variations.

The following example uses IndexNumber to index a number testsize property that can be searched using common number operators such as >=, i.e. testsize>=4.2.

[CustomObjectIndexer(typeof(Collider), version = 3)]
static void IndexObjectSize(CustomObjectIndexerTarget target, ObjectIndexer indexer)
{
    var collider = target.target as Collider;
    if (collider == null)
        return;

    var boundingBoxSize = collider.bounds.size;
    var totalSize = boundingBoxSize.x * boundingBoxSize.y;
    indexer.IndexNumber(target.documentIndex, "testsize", totalSize);
}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961