@minecraft
    正在准备搜索索引...

    接口 INumberTimelinePropertyItem

    A property item which supports Number Timeline properties

    interface INumberTimelinePropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        typeName: PropertyItemType;
        visible: boolean;
        addNode(data: INumberTimelinePropertyItemEntry): void;
        getData(): INumberTimelinePropertyItemEntry[];
        getTime(): number;
        removeNode(data: INumberTimelinePropertyItemEntry): void;
        setBounds(bounds: { maxValue: number; minValue: number }): void;
        setSeparatorSliceCount(counts: Vector2): void;
        setSeparatorStepCount(counts: Vector2): void;
        setTime(time: number): void;
        setTitle(title: LocalizedString): void;
        updateNode(data: INumberTimelinePropertyItemEntry): void;
    }

    层级 (查看层级一览)

    索引

    属性

    enable: boolean

    If the item is enabled in the UI.

    id: string

    Unique ID for the property item.

    paneId: string

    The parent pane id.

    The type name of the target property.

    visible: boolean

    If the item should be visible in the UI.

    方法

    • 参数

      • bounds: { maxValue: number; minValue: number }

      返回 void

      Updates data entries value bounds.