Script API - v1.21.90.25
    Preparing search index...

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

    Hierarchy (View Summary)

    Index

    Properties

    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.

    Methods

    • Returns number

      Get time current time value on the slider.

    • Parameters

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

      Returns void

      Updates data entries value bounds.

    • Parameters

      • counts: Vector2

        Counts for the thin grid lines.

      Returns void

      Set separator slice counts for x and y for the minor grid.

    • Parameters

      • counts: Vector2

        Counts for the thick grid lines.

      Returns void

      Set separator step counts for x and y for the major grid.

    • Parameters

      • time: number

        The new time value.

      Returns void

      Set time line slider value to a new value